mirror of
https://github.com/teableio/teable.git
synced 2026-01-16 18:32:19 +08:00
29 lines
777 B
JSON
29 lines
777 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"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/core": ["../core/src"]
|
|
},
|
|
"types": ["vitest/globals", "node"]
|
|
},
|
|
"exclude": ["**/node_modules", "**/.*/", "./dist", "./coverage"],
|
|
"include": ["src", "../core/src"]
|
|
}
|