mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-06-11 08:50:17 +00:00
23 lines
492 B
JSON
23 lines
492 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "./_types"
|
|
},
|
|
"include": ["src/lib/**/*.ts"],
|
|
"exclude": [
|
|
"_types",
|
|
"pouchdb-browser-webpack",
|
|
"utils",
|
|
"src/apps",
|
|
"src/**/*.test.ts",
|
|
"**/_test/**",
|
|
"utilsdeno",
|
|
"node_modules",
|
|
"test/**/*.test.ts",
|
|
"**/*.unit.spec.ts"
|
|
]
|
|
}
|