Skip to main content

Absolute Imports Mapping

To have wonderful and concise import like these:

import { RootState, addTask, toggleInfo } from '@/store/reducer';
import { ETaskStatus } from "@/types/model";

Typescript

Use tsconfig.json with the following config lines, where path specifies a set of entries that re-map imports to additional lookup locations and baseUrl specifies the base directory to resolve non-relative module names:

tsconfig.json
{
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"@/*": ["./*"]
}
}
}

Module Bundlers

Also, if the project uses Webpack, the module paths must be updated:

cfg/webpack.server.config.js
/* eslint-disable @typescript-eslint/no-var-requires */
const path = require("path");

module.exports = {
target: "node",
//..
resolve: {
extensions: [".js", ".jsx", ".ts", ".tsx", ".json"],
alias: {
'@/*': path.resolve(__dirname, "../src/*"),
}
},
//..
};

Configuration In Tests

For projects using Jest, another change has to be made:

const path = require("path");
module.exports = {
//..
moduleNameMapper: {
//..
'^@/(.*)$': ['<rootDir>/src/$1'],
}
//..
}

For Vitest:

vitest.config.ts
import { defineConfig } from 'vitest/config';
import path from 'path';

export default defineConfig({
resolve: {
alias: {
'@': path.resolve(__dirname, 'src'),
},
},
test: {
globals: true,
},
});