chore(build): fix path to tsconfig

This commit is contained in:
Elian Doran 2024-12-14 10:37:01 +02:00
parent 9fd288fe7e
commit 80afac902a
No known key found for this signature in database
2 changed files with 3 additions and 6 deletions

View File

@ -36,7 +36,7 @@ function register(app: express.Application) {
use: [{
loader: 'ts-loader',
options: {
configFile: "./src/public/tsconfig.json"
configFile: path.join(srcRoot, "..", "tsconfig.webpack.json")
}
}],
exclude: /node_modules/,

View File

@ -16,12 +16,9 @@
"allowJs": true
},
"include": [
"**/*",
],
"exclude": [
"./app-dist",
"./src/public/app/**/*",
],
"files": [
"./app/types.d.ts"
"./src/public/app/types.d.ts"
]
}