knowlegegraph-platform/tsconfig.json

39 lines
892 B
JSON
Raw Normal View History

2025-06-04 11:45:50 +08:00
{
"compileOnSave": true,
"compilerOptions": {
"target": "esnext",
"strict": true,
"noImplicitAny": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"jsx": "react",
"charset": "utf8",
"allowJs": false,
"pretty": true,
"noEmitOnError": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"strictPropertyInitialization": false,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"sourceMap": true,
"importHelpers": true,
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"module": "esnext",
"baseUrl": ".",
"paths": {
"#app/*": ["app/*"]
}
},
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
}
}