2019-09-06 09:37:30 +10:00
|
|
|
{
|
2021-09-02 12:16:40 +10:00
|
|
|
"extends": "./tsconfig.extend.json",
|
2019-09-06 09:37:30 +10:00
|
|
|
"compilerOptions": {
|
2022-05-04 19:10:19 +10:00
|
|
|
"target": "es2021",
|
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2019-09-06 09:37:30 +10:00
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-05-04 19:10:19 +10:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2019-09-06 09:37:30 +10:00
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
2022-05-04 19:10:19 +10:00
|
|
|
"newLine": "lf",
|
2019-09-06 09:37:30 +10:00
|
|
|
"noEmit": true,
|
2022-05-04 19:10:19 +10:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
"strictNullChecks": true,
|
2021-08-06 22:44:03 +10:00
|
|
|
"jsx": "react-jsx",
|
2022-05-04 19:10:19 +10:00
|
|
|
"baseUrl": "src"
|
2019-09-06 09:37:30 +10:00
|
|
|
},
|
2022-05-04 19:10:19 +10:00
|
|
|
"include": ["src"]
|
2019-09-06 09:37:30 +10:00
|
|
|
}
|