31 lines
788 B
JSON
31 lines
788 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"allowUnusedLabels": false,
|
|
"allowUnreachableCode": false,
|
|
|
|
"verbatimModuleSyntax": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
|
|
"sourceMap": true,
|
|
"noEmit": true,
|
|
|
|
"skipLibCheck": true
|
|
}
|
|
}
|