Files
nocodb/packages/nocodb/tsconfig.json
mertmit 7dd11de454 feat: revise audit architecture
Signed-off-by: mertmit <mertmit99@gmail.com>
2025-06-24 14:35:01 +03:00

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"]
}