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