2020-01-03 21:29:21 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-01-24 11:59:37 +00:00
|
|
|
"target": "ES2020",
|
2020-01-03 21:29:21 +00:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
2020-02-06 21:42:29 +00:00
|
|
|
"esnext",
|
|
|
|
"esnext.intl",
|
|
|
|
"es2017.intl",
|
|
|
|
"es2018.intl"
|
2020-01-03 21:29:21 +00:00
|
|
|
],
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"noEmit": true,
|
2020-01-24 11:59:37 +00:00
|
|
|
"jsx": "react",
|
2020-01-03 21:29:21 +00:00
|
|
|
"downlevelIteration": true,
|
2020-01-11 22:14:20 +00:00
|
|
|
"experimentalDecorators": true,
|
2020-01-24 11:59:37 +00:00
|
|
|
"baseUrl": ".",
|
2020-02-01 21:54:19 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"isolatedModules": true
|
2020-01-03 21:29:21 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2020-01-11 22:14:20 +00:00
|
|
|
"src/**/*"
|
2020-01-03 21:29:21 +00:00
|
|
|
]
|
|
|
|
}
|