mirror of
https://github.com/teableio/teable.git
synced 2026-02-19 17:19:50 +08:00
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "@teable/v2-formula-sql-pg",
|
|
"extends": "../../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": false,
|
|
"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"],
|
|
"@teable/formula": ["../../formula/src"]
|
|
},
|
|
"types": ["vitest/globals", "node"]
|
|
},
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"**/.*/",
|
|
"./dist",
|
|
"./coverage",
|
|
"../core/src/**/*.spec.ts",
|
|
"src/**/*.spec.ts",
|
|
"src/testkit/**",
|
|
"../../formula/src/**/*.spec.ts"
|
|
],
|
|
"include": ["src", "../core/src", "../di/src", "../../formula/src"]
|
|
}
|