build(commons): fix search for types

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2025-04-26 12:21:10 +02:00
parent 0cfd1a41f5
commit 5241a6e988
No known key found for this signature in database
GPG key ID: FE1CD209E3EA5E85

View file

@ -12,10 +12,23 @@
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"allowJs": true,
"declarationMap":true,
"declarationMap": true,
"sourceMap": true,
"typeRoots": ["./types"]
"typeRoots": [
"../node_modules/@types",
"./types"
],
"types": [
"node"
]
},
"include": ["./src", "./types"],
"exclude": ["./dist", "**/*.test.ts", "**/*.spec.ts"]
"include": [
"./src",
"./types"
],
"exclude": [
"./dist",
"**/*.test.ts",
"**/*.spec.ts"
]
}