2023-09-03 08:01:12 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2023-09-04 15:12:29 +00:00
|
|
|
"jsx": "react-jsx",
|
2023-09-04 19:24:13 +00:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"esModuleInterop": true,
|
2023-09-03 08:01:12 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
|
"inlineSources": true,
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"target": "ES6",
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"importHelpers": true,
|
|
|
|
|
"isolatedModules": true,
|
2023-09-04 15:12:29 +00:00
|
|
|
"strictNullChecks": true,
|
2023-09-03 08:01:12 +00:00
|
|
|
"lib": [
|
|
|
|
|
"DOM",
|
|
|
|
|
"ES5",
|
|
|
|
|
"ES6",
|
|
|
|
|
"ES7"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
2023-09-04 15:12:29 +00:00
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.tsx",
|
|
|
|
|
"main.tsx"
|
2023-09-03 08:01:12 +00:00
|
|
|
]
|
2023-09-04 15:12:29 +00:00
|
|
|
}
|