Portal/rsconcept/frontend/tsconfig.json

33 lines
729 B
JSON
Raw Normal View History

2024-06-07 20:17:03 +03:00
{
"compilerOptions": {
2024-07-19 22:30:28 +03:00
"target": "ES2022",
2024-06-07 20:17:03 +03:00
"useDefineForClassFields": true,
2024-07-19 22:30:28 +03:00
"lib": ["ES2022", "dom", "dom.iterable"],
"module": "ES2022",
2024-06-07 20:17:03 +03:00
"skipLibCheck": true,
"esModuleInterop": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": "./src/",
"paths": {
"@/*": ["*"]
}
},
"types": ["vite/client"],
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}