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": {
|
2021-08-26 15:34:27 +10:00
|
|
|
"target": "es6",
|
2021-09-02 12:16:40 +10:00
|
|
|
"lib": [
|
|
|
|
|
"es5",
|
|
|
|
|
"es6",
|
|
|
|
|
"dom",
|
|
|
|
|
"dom.iterable",
|
|
|
|
|
"esnext"
|
|
|
|
|
],
|
2019-09-06 09:37:30 +10:00
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noEmit": true,
|
2021-08-26 15:34:27 +10:00
|
|
|
"noImplicitAny": false,
|
2021-08-06 22:44:03 +10:00
|
|
|
"jsx": "react-jsx",
|
2021-08-26 15:34:27 +10:00
|
|
|
"baseUrl": "src",
|
|
|
|
|
"noFallthroughCasesInSwitch": true
|
2019-09-06 09:37:30 +10:00
|
|
|
},
|
2021-09-02 12:16:40 +10:00
|
|
|
"include": [
|
|
|
|
|
"src",
|
|
|
|
|
"types"
|
|
|
|
|
]
|
2019-09-06 09:37:30 +10:00
|
|
|
}
|