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": {
|
2023-04-14 21:27:05 +00:00
|
|
|
// "tsBuildInfoFile": "./node_modules/.cache/tsconfig.tsbuildinfo",
|
2022-02-23 15:16:42 +00:00
|
|
|
"incremental": true,
|
|
|
|
"module": "ES2020",
|
|
|
|
"moduleResolution": "node",
|
2022-06-28 14:40:39 +00:00
|
|
|
"target": "ES2020",
|
2023-01-19 23:00:05 +00:00
|
|
|
"jsx": "react-jsx",
|
2022-02-23 15:16:42 +00:00
|
|
|
"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,
|
2023-05-16 09:53:43 +00:00
|
|
|
"pretty": true,
|
|
|
|
"resolveJsonModule": true
|
2022-02-23 15:16:42 +00:00
|
|
|
}
|
|
|
|
}
|