2020-08-04 16:22:31 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "dist",
|
|
|
|
"module": "esnext",
|
2020-08-05 02:53:04 +02:00
|
|
|
"target": "ES3",
|
2020-10-03 19:07:09 +02:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"esnext",
|
|
|
|
"DOM.Iterable"
|
|
|
|
],
|
2020-08-04 16:22:31 +02:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"jsx": "react",
|
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2020-08-05 02:53:04 +02:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2020-10-03 19:07:09 +02:00
|
|
|
"downlevelIteration": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true
|
2020-08-04 16:22:31 +02:00
|
|
|
},
|
2020-10-03 19:07:09 +02:00
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"dist",
|
|
|
|
"example"
|
|
|
|
]
|
2020-08-04 16:22:31 +02:00
|
|
|
}
|