Files
nocodb/packages/nc-sql-executor/tsconfig.json
mertmit a9a57e5b7d refactor: rename microservice
Signed-off-by: mertmit <mertmit99@gmail.com>
2023-11-08 16:01:32 +03:00

29 lines
707 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"resolveJsonModule": true,
"esModuleInterop": true,
"paths": {
"src/*": ["./src/*"],
"~/*": ["./src/*"],
"@/*": ["./src/*"]
}
}
}