26 lines
594 B
JSON
26 lines
594 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2020",
|
||
|
"useDefineForClassFields": true,
|
||
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||
|
"module": "ESNext",
|
||
|
"skipLibCheck": true,
|
||
|
|
||
|
/* Bundler mode */
|
||
|
"moduleResolution": "Bundler",
|
||
|
"allowImportingTsExtensions": true,
|
||
|
"isolatedModules": true,
|
||
|
"moduleDetection": "force",
|
||
|
"noEmit": true,
|
||
|
"jsx": "react-jsx",
|
||
|
|
||
|
/* Linting */
|
||
|
"strict": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noUncheckedSideEffectImports": true
|
||
|
},
|
||
|
"include": ["src"]
|
||
|
}
|