2020-10-25 16:55:59 -04:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
|
"inlineSources": true,
|
2021-10-17 18:16:52 +05:30
|
|
|
"module": "ESNext",
|
|
|
|
|
"target": "es6",
|
2021-10-08 10:23:06 +05:30
|
|
|
"jsx": "react",
|
2021-11-21 22:13:19 +08:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2020-10-25 16:55:59 -04:00
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"moduleResolution": "node",
|
2020-10-26 11:58:14 -04:00
|
|
|
"importHelpers": true,
|
2020-10-25 16:55:59 -04:00
|
|
|
"lib": [
|
|
|
|
|
"dom",
|
|
|
|
|
"es5",
|
|
|
|
|
"scripthost",
|
|
|
|
|
"es2015"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"**/*.ts"
|
2021-10-17 18:16:52 +05:30
|
|
|
]
|
|
|
|
|
}
|