mirror of
https://github.com/morten-olsen/homelab-operator.git
synced 2026-02-08 01:36:28 +01:00
36 lines
892 B
JSON
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/**/*"]
|
|
}
|