mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-07-24 21:42:58 +00:00
17 lines
435 B
JSON
17 lines
435 B
JSON
{
|
|
"extends": "../../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@/*": ["../../*"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/*.svelte"],
|
|
"exclude": ["**/*.unit.spec.ts"]
|
|
}
|