mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-04-23 02:27:55 +00:00
49a47b504f
- strict: true - noImplicitAny: true - strictNullChecks: true - noUnusedLocals: true - noUnusedParameters: true - allowJs: false (TypeScript only) This catches null/undefined bugs at compile time.
26 lines
617 B
JSON
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
|
|
}
|
|
}
|