34 lines
877 B
JSON
34 lines
877 B
JSON
|
{
|
||
|
"exclude": ["node_modules", "dist", ".tsbuild*", ".vercel"],
|
||
|
"compilerOptions": {
|
||
|
"composite": true,
|
||
|
"declaration": true,
|
||
|
"declarationMap": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"esModuleInterop": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"importHelpers": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"incremental": true,
|
||
|
"jsx": "react-jsx",
|
||
|
"lib": ["dom", "DOM.Iterable", "esnext"],
|
||
|
"experimentalDecorators": true,
|
||
|
"module": "CommonJS",
|
||
|
"target": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noImplicitAny": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noUnusedLocals": false,
|
||
|
"noUnusedParameters": false,
|
||
|
"skipLibCheck": true,
|
||
|
"strict": true,
|
||
|
"strictFunctionTypes": true,
|
||
|
"strictNullChecks": true,
|
||
|
"useDefineForClassFields": true,
|
||
|
"noImplicitOverride": true,
|
||
|
"noEmit": true
|
||
|
},
|
||
|
"references": []
|
||
|
}
|