2018-08-27 12:07:32 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-05-19 13:45:27 +00:00
|
|
|
"target": "es5",
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"esnext"
|
|
|
|
],
|
2018-08-27 12:07:32 +00:00
|
|
|
"allowJs": true,
|
2020-05-19 13:45:27 +00:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
2019-04-17 14:44:23 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2020-05-19 13:45:27 +00:00
|
|
|
"strict": true,
|
|
|
|
"sourceMap": true,
|
2019-04-17 12:13:23 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "esnext",
|
2018-08-27 12:07:32 +00:00
|
|
|
"moduleResolution": "node",
|
2020-05-19 13:45:27 +00:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2019-04-17 12:13:23 +00:00
|
|
|
"noImplicitAny": true,
|
2018-08-27 12:07:32 +00:00
|
|
|
"noImplicitReturns": true,
|
2019-04-17 12:13:23 +00:00
|
|
|
"noUnusedLocals": true,
|
2020-05-19 13:45:27 +00:00
|
|
|
"jsx": "react",
|
2019-07-19 18:19:53 +00:00
|
|
|
"typeRoots": [
|
|
|
|
"./node_modules/@types",
|
|
|
|
"./src/typings"
|
|
|
|
],
|
2018-08-27 12:07:32 +00:00
|
|
|
},
|
2019-07-19 18:19:53 +00:00
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
]
|
2018-08-27 12:07:32 +00:00
|
|
|
}
|