mirror of
https://github.com/teableio/teable.git
synced 2026-01-09 07:44:56 +08:00
27 lines
723 B
JSON
27 lines
723 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "@teable/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": "src",
|
|
"outDir": "dist",
|
|
"types": ["vitest/globals"]
|
|
},
|
|
"exclude": ["**/node_modules", "**/.*/", "./dist", "./coverage"],
|
|
"include": ["src"]
|
|
}
|