mirror of
https://github.com/canna71/obsidian-sheets.git
synced 2026-07-22 08:30:27 +00:00
31 lines
646 B
JSON
31 lines
646 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"x-data-spreadsheet": ["node_modules/x-data-spreadsheet"]
|
|
},
|
|
"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"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|