Transform TS path alias to absolute paths for esbuild
// tsconfig.json
"compilerOptions": {
"outDir": "./dist",
"baseUrl": ".",
"paths": {
"@common/*": ["../common/*"], // asterisks are important
"@shared/*": ["./src/shared/*"]
}
}
// esbuild
const tsPaths = require("esbuild-ts-paths")
esbuild.build({
//...
plugins:[
tsPaths(
"./path/to/tsconfig.json" // optional, defaults to ./tsconfig.json
)
]
})