絶対パスインポートとモジュールパスエイリアス
MBC CQRS serverless フレームワークには、tsconfig.json
ファイルの "paths"
および "baseUrl"
オプションのサポートが組み込まれています。
これらのオプションを使用すると、プロジェクト ディレクトリに絶対パスのエイリアスを付けることができ、モジュールのインポートが容易になります。例えば:
// before
import { Role } from "../../../auth/role.enum";
// after
import { Role } from "@/auth/role.enum";