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