2021-06-11 05:49:57 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-05-02 06:52:08 -07:00
|
|
|
"baseUrl": "src",
|
2021-06-11 05:49:57 -07:00
|
|
|
"target": "ES5",
|
2022-02-15 14:59:41 -07:00
|
|
|
"lib": ["DOM", "DOM.Iterable", "ES2015"],
|
2021-06-11 05:49:57 -07:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
2022-02-18 04:27:39 -07:00
|
|
|
"noImplicitAny": true,
|
2021-06-11 05:49:57 -07:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "node",
|
2023-04-16 20:20:23 -07:00
|
|
|
"resolveJsonModule": true,
|
2021-06-11 05:49:57 -07:00
|
|
|
"outDir": "./dist/",
|
|
|
|
"checkJs": false,
|
|
|
|
"strictNullChecks": true,
|
2022-02-15 14:59:41 -07:00
|
|
|
"jsx": "react-jsx",
|
|
|
|
"downlevelIteration": true
|
2021-06-11 05:49:57 -07:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
]
|
|
|
|
}
|