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: [{ use: [{
loader: 'ts-loader', loader: 'ts-loader',
options: { options: {
configFile: "./src/public/tsconfig.json" configFile: path.join(srcRoot, "..", "tsconfig.webpack.json")
} }
}], }],
exclude: /node_modules/, exclude: /node_modules/,

View File

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