Files
travelplanning/tsconfig.json
T
2026-06-13 17:02:55 +07:00

26 lines
716 B
JSON

{
"compilerOptions": {
"ignoreDeprecations": "6.0",
"module": "ESNext",
"moduleResolution": "node",
"allowImportingTsExtensions": true,
"rewriteRelativeImportExtensions": true,
"noEmit": true,
"jsx": "react-jsx",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"outDir": "./dist",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false
}
}