Files
pwap/web/tsconfig.json
T
Claude 49a47b504f Enable strict TypeScript mode
- strict: true
- noImplicitAny: true
- strictNullChecks: true
- noUnusedLocals: true
- noUnusedParameters: true
- allowJs: false (TypeScript only)

This catches null/undefined bugs at compile time.
2025-11-16 21:21:27 +00:00

26 lines
617 B
JSON

{
"files": [],
"references": [
{ "path": "./tsconfig.app.json" },
{ "path": "./tsconfig.node.json" }
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@pezkuwi/i18n": ["../shared/i18n"],
"@pezkuwi/lib": ["../shared/lib"],
"@pezkuwi/utils": ["../shared/utils"],
"@pezkuwi/theme": ["../shared/theme"],
"@pezkuwi/types": ["../shared/types"]
},
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"skipLibCheck": true,
"allowJs": false,
"noUnusedLocals": true,
"noUnusedParameters": true
}
}