2022-04-21 19:00:51 +00:00
|
|
|
{
|
2022-06-06 16:29:14 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
|
"inlineSources": true,
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"target": "ES6",
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"importHelpers": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"lib": ["DOM", "ES5", "ES6", "ES7"],
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"jsxFactory": "h",
|
|
|
|
|
"jsxFragmentFactory": "Fragment",
|
2022-07-05 13:10:05 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"resolveJsonModule": true
|
2022-06-06 16:29:14 +00:00
|
|
|
},
|
|
|
|
|
"include": ["**/*.ts", "**/*.tsx"]
|
2022-04-21 19:00:51 +00:00
|
|
|
}
|