2020-04-26 17:35:03 +08:00
|
|
|
{
|
2020-12-06 14:57:59 +08:00
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
2020-04-26 17:35:03 +08:00
|
|
|
"compilerOptions": {
|
2020-06-28 11:21:35 +08:00
|
|
|
"baseUrl": ".",
|
2021-05-30 16:33:27 +08:00
|
|
|
"target": "ESNext",
|
|
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext", "WebWorker"],
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": false,
|
2020-07-01 22:06:26 +08:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2021-05-30 16:33:27 +08:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"allowJs": false,
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"jsx": "react",
|
2020-04-26 17:35:03 +08:00
|
|
|
"downlevelIteration": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"checkJs": false,
|
|
|
|
"experimentalDecorators": true,
|
2020-05-12 23:55:05 +08:00
|
|
|
"noImplicitAny": false,
|
2020-07-01 22:06:26 +08:00
|
|
|
"noUnusedParameters": false,
|
2020-04-26 17:35:03 +08:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
2021-05-30 16:33:27 +08:00
|
|
|
"types": ["jest"]
|
|
|
|
},
|
|
|
|
"include": ["./src"]
|
2020-04-26 17:35:03 +08:00
|
|
|
}
|