mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-09 13:51:57 -04:00
build(commons): fix search for types
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
0cfd1a41f5
commit
5241a6e988
1 changed files with 17 additions and 4 deletions
|
@ -12,10 +12,23 @@
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"declarationMap":true,
|
"declarationMap": true,
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"typeRoots": ["./types"]
|
"typeRoots": [
|
||||||
|
"../node_modules/@types",
|
||||||
|
"./types"
|
||||||
|
],
|
||||||
|
"types": [
|
||||||
|
"node"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"include": ["./src", "./types"],
|
"include": [
|
||||||
"exclude": ["./dist", "**/*.test.ts", "**/*.spec.ts"]
|
"./src",
|
||||||
|
"./types"
|
||||||
|
],
|
||||||
|
"exclude": [
|
||||||
|
"./dist",
|
||||||
|
"**/*.test.ts",
|
||||||
|
"**/*.spec.ts"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue