Files
operator/images/operator/tsconfig.json
2025-09-05 23:07:28 +02:00

36 lines
892 B
JSON

{
"compilerOptions": {
// Environment setup & latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "NodeNext",
"moduleDetection": "force",
"allowJs": true,
// Bundler mode
"moduleResolution": "NodeNext",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
// "noUncheckedIndexedAccess": true,
// "noImplicitOverride": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"baseUrl": ".",
"paths": {
"#services/*": ["./src/services/*"],
"#resources/*": ["./src/resources/*"]
"#utils/*": ["./src/utils/*"]
"#bootstrap/*": ["./src/bootstrap/*"]
}
},
"include": ["src/**/*"]
}