This repository has been archived on 2024-03-17. You can view files and clone it, but cannot push or open issues or pull requests.
woj-ui/tsconfig.json

26 lines
681 B
JSON
Raw Normal View History

2023-07-15 20:55:17 +08:00
{
2023-07-16 19:33:43 +08:00
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
2023-07-15 20:55:17 +08:00
2023-07-16 19:33:43 +08:00
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
2023-07-15 20:55:17 +08:00
2023-07-16 19:33:43 +08:00
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
2023-07-15 20:55:17 +08:00
}