mirror of
https://github.com/jsmorabito/obsidian-commander.git
synced 2026-07-22 06:40:31 +00:00
22 lines
532 B
JSON
22 lines
532 B
JSON
{
|
|
"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", "DOM.Iterable"],
|
|
"jsx": "preserve",
|
|
"jsxFactory": "h",
|
|
"jsxFragmentFactory": "Fragment",
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx"]
|
|
}
|