mirror of
https://github.com/teableio/teable.git
synced 2026-02-19 17:19:50 +08:00
38 lines
1014 B
JSON
38 lines
1014 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "@teable/v2-core",
|
|
"extends": "../../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"target": "esnext",
|
|
"lib": ["esnext"],
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noEmit": false,
|
|
"incremental": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"declarationDir": "dist",
|
|
"composite": true,
|
|
"rootDir": "../../",
|
|
"outDir": "dist",
|
|
"paths": {
|
|
"@teable/v2-di": ["../di/src"],
|
|
"@teable/formula": ["../../formula/src"],
|
|
"@teable/i18n-keys": ["../../i18n-keys/src"]
|
|
},
|
|
"types": ["vitest/globals", "node"]
|
|
},
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"**/.*/",
|
|
"./dist",
|
|
"./coverage",
|
|
"../../formula/src/**/*.spec.ts"
|
|
],
|
|
"include": ["src", "../di/src", "../../formula/src", "../../i18n-keys/src"]
|
|
}
|