2022-02-23 15:16:42 +00:00
|
|
|
{
|
2022-06-28 14:40:39 +00:00
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
|
|
// "extends": "@tsconfig/strictest/tsconfig.json",
|
2022-02-23 15:16:42 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"incremental": true,
|
|
|
|
"module": "ES2020",
|
|
|
|
"moduleResolution": "node",
|
2022-06-28 14:40:39 +00:00
|
|
|
"target": "ES2020",
|
2022-02-23 15:16:42 +00:00
|
|
|
"jsx": "preserve",
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
// "emitDeclarationOnly": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-03-02 17:13:16 +00:00
|
|
|
"isolatedModules": true,
|
2022-06-28 14:40:39 +00:00
|
|
|
"noEmit": true,
|
2022-02-23 15:16:42 +00:00
|
|
|
"strict": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
// "exactOptionalPropertyTypes": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
// "noImplicitReturns": true,
|
|
|
|
// "noUncheckedIndexedAccess": true,
|
|
|
|
// "noPropertyAccessFromIndexSignature": true /* Enforces using indexed accessors for keys declared using an indexed type */,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"pretty": true
|
|
|
|
}
|
|
|
|
}
|