2021-10-17 14:50:12 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
"inlineSources": true,
|
|
|
|
"module": "ESNext",
|
2024-01-06 04:00:55 +00:00
|
|
|
"target": "ESNext",
|
2021-10-17 14:50:12 +00:00
|
|
|
"allowJs": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
// "allowSyntheticDefaultImports": true,
|
2022-03-20 07:54:57 +00:00
|
|
|
"resolveJsonModule": true,
|
2021-10-17 14:50:12 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"importHelpers": true,
|
2021-11-27 06:45:46 +00:00
|
|
|
"isolatedModules": true,
|
2024-01-06 04:00:55 +00:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"es5",
|
|
|
|
"scripthost",
|
|
|
|
"es2015"
|
|
|
|
]
|
2021-10-17 14:50:12 +00:00
|
|
|
},
|
2024-01-06 04:00:55 +00:00
|
|
|
"include": [
|
|
|
|
"**/*.ts"
|
|
|
|
]
|
|
|
|
}
|