Matchu
957f345620
Oops, we had a trailing comma, I feel like this might be why some tools seemed to respect these settings and other tools didn't! This change seems to enable us to remove our weird hacks that made `vercel dev` run…
33 lines
674 B
JSON
33 lines
674 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"downlevelIteration": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx"
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs"
|
|
}
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|