noot
All checks were successful
commit-tag / commit-tag-image (map[context:./migrations file:./migrations/Dockerfile name:migrations]) (push) Successful in 17s
commit-tag / commit-tag-image (map[context:./ts file:./ts/Dockerfile name:ts]) (push) Successful in 1m48s

This commit is contained in:
a 2025-06-14 18:06:18 -05:00
parent 53f46934e8
commit 7cc1c4ab72
No known key found for this signature in database
GPG Key ID: 2F22877AA4DFDADB
2 changed files with 5 additions and 2 deletions

View File

@ -22,7 +22,10 @@
"linter": { "linter": {
"enabled": true, "enabled": true,
"rules": { "rules": {
"recommended": true "recommended": true,
"suspicious": {
"noExplicitAny": "off"
}
} }
}, },
"javascript": { "javascript": {

View File

@ -127,7 +127,7 @@ export class WorkerCommand extends Command {
webpackConfigHook: (config) => { webpackConfigHook: (config) => {
if (!config.resolve) config.resolve = {} if (!config.resolve) config.resolve = {}
if (!config.resolve.alias) config.resolve.alias = {} if (!config.resolve.alias) config.resolve.alias = {}
config.resolve!.alias = { config.resolve.alias = {
'#': path.resolve(process.cwd(), 'src/'), '#': path.resolve(process.cwd(), 'src/'),
...config.resolve!.alias, ...config.resolve!.alias,
} }