mirror of
https://github.com/teableio/teable.git
synced 2026-02-19 17:19:50 +08:00
25 lines
663 B
JSON
25 lines
663 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "@teable/formula",
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"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", "node"]
|
|
},
|
|
"exclude": ["**/node_modules", "**/.*/", "./dist", "./coverage"],
|
|
"include": ["src"]
|
|
}
|