Skip to content

Commit ba4bb86

Browse files
committed
feat: dump Typescript path aliasing in favor of built in ESM aliases
1 parent db413e0 commit ba4bb86

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

src/tsconfig.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ export const tsconfig = {
2828
allowSyntheticDefaultImports: true,
2929
esModuleInterop: true,
3030
experimentalDecorators: true,
31-
paths: {
32-
'@/*': ['./*'],
33-
},
3431
skipLibCheck: true,
3532
},
3633
};

src/vitest.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import fs from 'fs';
2-
import path from 'path';
32

43
export function vitestConfig() {
54
// eslint-disable-next-line @typescript-eslint/no-var-requires
@@ -10,11 +9,6 @@ export function vitestConfig() {
109
watch: false,
1110
exclude: ['.trunk', '**/build/**', ...configDefaults.exclude],
1211
},
13-
resolve: {
14-
alias: {
15-
'@': path.resolve('./src'),
16-
},
17-
},
1812
};
1913

2014
if (fs.existsSync('__tests__/vitest.setup.ts')) {

0 commit comments

Comments
 (0)