GitHub - wjfei/esbuild-plugin-tsconfig-paths (original) (raw)
import { tsconfigPathsPlugin } from "esbuild-plugin-tsconfig-paths"; import esbuild from "esbuild";
esbuild.build({ // ...other config plugins: [ // ... other plugins tsconfigPathsPlugin({ // Directory of tsconfig file cwd: process.cwd(), // tsconfig filename tsconfig: "custom-tsconfig.json", // which files will be transformed filter: /.*/, }) ] })