34 lines
815 B
JSON
34 lines
815 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"useDefineForClassFields": true,
|
||
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"skipLibCheck": true,
|
||
|
|
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"moduleDetection": "force",
|
||
|
|
"noEmit": true,
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
|
||
|
|
"strict": true,
|
||
|
|
|
||
|
|
"allowUnusedLabels": false,
|
||
|
|
"allowUnreachableCode": false,
|
||
|
|
"exactOptionalPropertyTypes": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"noImplicitOverride": true,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"noPropertyAccessFromIndexSignature": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
|
||
|
|
"checkJs": true,
|
||
|
|
|
||
|
|
"forceConsistentCasingInFileNames": true
|
||
|
|
}
|
||
|
|
}
|