mirror of
https://github.com/zadam/trilium.git
synced 2026-01-04 05:34:30 +01:00
build(tsconfig): fix glob for build config
not sure why, but seems like it doesn't like `[jt]s` – which causes it to skip certain .d.ts files, making tsc fail
This commit is contained in:
parent
2be9389f3b
commit
e0c0086eb3
@ -14,14 +14,14 @@
|
||||
"esModuleInterop": true,
|
||||
"verbatimModuleSyntax": true
|
||||
},
|
||||
"include": ["./src/**/*.[jt]s", "./*.ts"],
|
||||
"include": ["./src/**/*.ts", "./src/**/*.js", "./*.ts"],
|
||||
"exclude": [
|
||||
"./node_modules/**/*",
|
||||
"./spec-es6/**/*.ts",
|
||||
"./spec/**/*",
|
||||
"./**/*.spec.ts",
|
||||
"./src/public/**/*",
|
||||
"./*.config.[jt]s",
|
||||
"./*.config.ts",
|
||||
],
|
||||
"files": ["src/types.d.ts"]
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user