Skip to content

Commit b6f0084

Browse files
peterbersese
andauthored
Use @-imports in TS runtime code (#50470)
Co-authored-by: Robert Sese <[email protected]>
1 parent 529f4a8 commit b6f0084

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ COPY --chown=node:node .remotejson-cache* ./.remotejson-cache
9393
COPY --chown=node:node .pageinfo-cache.json.br* ./.pageinfo-cache.json.br
9494
COPY --chown=node:node data ./data
9595
COPY --chown=node:node next.config.js ./
96+
COPY --chown=node:node tsconfig.json ./
9697

9798
EXPOSE $PORT
9899

src/frame/lib/app.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import express from 'express'
2-
import middleware from '../middleware/index.js'
2+
import middleware from '@/frame/middleware/index.js'
33

44
function createApp() {
55
const app = express()

vitest.config.ts

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ export default {
55
exclude: ['**/tests/playwright-*.spec.ts'],
66
// Default is `!process.env.CI`
77
watch: false,
8+
// vitest doesn't account for tsconfig.json `paths` settings so we have to
9+
// manually set this alias to resolve our TS @-imports
10+
alias: {
11+
'@/': new URL('./src/', import.meta.url).pathname,
12+
},
813

914
globalSetup: './src/tests/vitest.setup.ts',
1015
},

0 commit comments

Comments
 (0)