2022-09-24 17:13:25 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"baseUrl": ".",
|
2023-08-13 15:40:48 +00:00
|
|
|
"paths": {
|
|
|
|
|
"x-data-spreadsheet": ["node_modules/x-data-spreadsheet"]
|
|
|
|
|
},
|
2022-09-24 17:13:25 +00:00
|
|
|
"inlineSourceMap": true,
|
|
|
|
|
"inlineSources": true,
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"target": "ES6",
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"importHelpers": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
// "allowSyntheticDefaultImports": true,
|
|
|
|
|
"lib": [
|
|
|
|
|
"DOM",
|
|
|
|
|
"ES5",
|
|
|
|
|
"ES6",
|
|
|
|
|
"ES7"
|
|
|
|
|
],
|
|
|
|
|
"jsx": "react"
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"**/*.ts","**/*.tsx","**/*.svg"
|
2023-08-05 16:02:46 +00:00
|
|
|
],
|
|
|
|
|
"exclude": ["node_modules"]
|
2022-09-24 17:13:25 +00:00
|
|
|
}
|