mirror of
https://github.com/fallout2-ce/fallout2-ce-ems.git
synced 2026-07-27 16:47:27 -07:00
32 lines
803 B
JSON
32 lines
803 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["es2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"types": ["vite/client"],
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"skipLibCheck": true,
|
|
"alwaysStrict": true,
|
|
"strictBindCallApply": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"strictFunctionTypes": true,
|
|
"strict": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
},
|
|
"include": ["src"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|