OpChan/tsconfig.json

20 lines
377 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-28 19:07:26 +05:30
"noImplicitAny": true,
"noUnusedParameters": true,
2025-04-15 16:28:03 +05:30
"skipLibCheck": true,
"allowJs": true,
2025-08-28 19:07:26 +05:30
"noUnusedLocals": true,
"strictNullChecks": true
2025-04-15 16:28:03 +05:30
}
}