snowballtools-base/packages/frontend/tsconfig.json

37 lines
890 B
JSON
Raw Normal View History

{
"compilerOptions": {
2024-04-11 21:40:22 +00:00
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
2024-04-11 21:40:22 +00:00
2024-04-11 23:10:39 +00:00
"types": ["vite/client"],
2024-04-11 21:40:22 +00:00
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2024-02-19 13:15:56 +00:00
"jsx": "react-jsx",
2024-04-11 21:40:22 +00:00
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"paths": {
2024-04-11 23:10:39 +00:00
"types/*": ["./src/types/*"],
2024-04-11 21:40:22 +00:00
"utils/*": ["./src/utils/*"],
"assets/*": ["./src/assets/*"],
"context/*": ["./src/context/*"],
2024-05-14 17:07:32 +00:00
"components/*": ["./src/components/*"],
"pages/*": ["./src/pages/*"]
2024-04-11 21:40:22 +00:00
}
},
2024-04-11 21:40:22 +00:00
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}