Partypack/tsconfig.json

28 lines
686 B
JSON
Raw Normal View History

2024-01-20 23:32:53 +01:00
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
2024-01-28 11:07:10 +01:00
/* Fuck you typescript no linting for you */
"strict": false,
"noImplicitAny": false,
2024-01-28 11:07:10 +01:00
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": false
2024-01-20 23:32:53 +01:00
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}