mirror of
https://github.com/antokeinanen/obsidian-advanced-merger.git
synced 2026-07-22 07:40:24 +00:00
Changes to be committed: new file: .editorconfig new file: .eslintignore new file: .eslintrc new file: .gitignore new file: .npmrc new file: README.md new file: esbuild.config.mjs new file: main.ts new file: manifest.json new file: media/2023-03-16 18-23-14.gif new file: package-lock.json new file: package.json new file: styles.css new file: tsconfig.json new file: version-bump.mjs new file: versions.json
24 lines
419 B
JSON
24 lines
419 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"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
]
|
|
}
|