mirror of
https://github.com/jsmorabito/obsidian-text-formatting-toolbar.git
synced 2026-07-22 07:48:21 +00:00
22 lines
484 B
JSON
22 lines
484 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"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"src/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts"]
|
|
}
|