Uecko_ERP/apps/web/tsconfig.app.json

33 lines
771 B
JSON
Raw Normal View History

2025-01-28 14:01:02 +00:00
{
"compilerOptions": {
2025-05-02 21:43:51 +00:00
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
2025-01-28 14:01:02 +00:00
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
2025-05-09 10:45:32 +00:00
"verbatimModuleSyntax": false,
2025-01-28 14:01:02 +00:00
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
2025-05-05 09:27:00 +00:00
"erasableSyntaxOnly": true,
2025-01-28 14:01:02 +00:00
"noFallthroughCasesInSwitch": true,
2025-05-09 10:45:32 +00:00
"noUncheckedSideEffectImports": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
2025-01-28 14:01:02 +00:00
},
2025-05-02 21:43:51 +00:00
"include": ["src"]
2025-01-28 14:01:02 +00:00
}