actual/tsconfig.json
Tom French b73ef9153f fix: stop typechecking javascript files
We've got a bunch of type errors that need to be fixed but we want to do that progressively
2022-08-24 21:09:16 +01:00

20 lines
464 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2021", "DOM"],
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"downlevelIteration": true,
"jsx": "preserve",
// Check JS files too
"allowJs": true,
"checkJs": false,
// Used for temp builds
"outDir": "build",
"moduleResolution": "Node",
"module": "ESNext"
},
"exclude": ["node_modules", "build"]
}