mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 03:35:37 +00:00
36 lines
1.0 KiB
JSON
36 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "es2017",
|
|
"lib": ["es2019"],
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": false,
|
|
"noImplicitAny": false,
|
|
"strictBindCallApply": false,
|
|
"forceConsistentCasingInFileNames": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react",
|
|
"paths": {
|
|
"src/*": ["src/*"],
|
|
"~/*": ["src/*"],
|
|
"@/*": ["src/*"],
|
|
"@noco-local-integrations/*": ["../noco-integrations/packages/*"],
|
|
"@noco-local-integrations/core": ["../noco-integrations/core"]
|
|
},
|
|
"typeRoots": ["src/types", "node_modules/@types"]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["src/ee", "src/ee-on-prem", "src/ee-cloud", "**/*.spec.ts"]
|
|
}
|