OpChan/tsconfig.json

36 lines
892 B
JSON
Raw Normal View History

2025-04-15 16:28:03 +05:30
{
"files": [],
"references": [
{ "path": "./tsconfig.app.json" },
{ "path": "./tsconfig.node.json" }
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
2025-08-30 18:34:50 +05:30
/* Enhanced Type Checking */
"strict": true,
2025-08-28 19:07:26 +05:30
"noImplicitAny": true,
"noUnusedParameters": true,
2025-08-30 18:34:50 +05:30
"noUnusedLocals": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
/* Module Resolution */
2025-04-15 16:28:03 +05:30
"skipLibCheck": true,
"allowJs": true,
2025-08-30 18:34:50 +05:30
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
2025-04-15 16:28:03 +05:30
}
}