ConceptPortal-public/rsconcept/frontend/tsconfig.json

36 lines
790 B
JSON
Raw Normal View History

2023-07-15 17:46:19 +03:00
{
"compilerOptions": {
2024-07-19 22:31:35 +03:00
"target": "ES2022",
"useDefineForClassFields": true,
2024-07-19 22:31:35 +03:00
"lib": ["ES2022", "dom", "dom.iterable"],
"module": "ES2022",
2023-07-15 17:46:19 +03:00
"skipLibCheck": true,
2023-08-01 23:43:43 +03:00
"esModuleInterop": true,
2025-03-14 20:44:23 +03:00
/* Language features */
"erasableSyntaxOnly": true,
2023-07-15 17:46:19 +03:00
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
2025-03-14 20:44:23 +03:00
/* Bundler mode */
"allowImportingTsExtensions": true,
"moduleResolution": "bundler",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": "./src/",
"paths": {
"@/*": ["*"]
2024-04-01 19:07:20 +03:00
}
2023-07-15 17:46:19 +03:00
},
2024-04-01 19:07:20 +03:00
"types": ["vite/client"],
"include": ["src"],
2025-03-02 19:42:19 +03:00
"references": [{ "path": "./tsconfig.vite.json" }]
2023-07-15 17:46:19 +03:00
}