13
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Nuxt.js 2.9 + TypeScript のserverMiddelewareで tsconfigのpathsを使えるようにする

Last updated at Posted at 2019-08-22

8/21 に Nuxt.js 2.9 (数時間後に2.9.1出ましたけど)でましたね!

バージョンアップや詳しいやり方は、公式のマイグレーションガイドを参照くださいー

Nuxt.js のserverMiddlewareは、ts-nodeを使ってるため、通常だと importで

import hoge from '~/hoge'

ができず、こんな感じで相対パスにしてたかと思います。

import hoge from '../hoge'

Nuxtではなく、ts-node単体で実行する場合はtsconfig-paths
というライブラリを使うと

ts-node -r tsconfig-paths/register main.ts

とすると、 ~/hoge が使えました。

Nuxt.js 2.9 で @nuxt/typescriptが分離され、 @nuxt/typescript-runtime
になり、 pathsが使えるようになったかな?ってみたところやっぱり使えなかったので、ちょこっとみてみたところこうすると使えました。

まず、マイグレーションガイドをみながらバージョンをあげておきます。

次に、Runtimeのマイグレーションガイドの手順でruntimeを追加します。

Runtimeガイドには

"scripts": {
  "dev": "nuxt-ts",
  "build": "nuxt-ts build",
  "generate": "nuxt-ts generate",
  "start": "nuxt-ts start"
},

こう書いてありますが、、 tsconfig-pathsを packageにインストールしたのち

"scripts": {
  "dev": "node -r tsconfig-paths/register ./node_modules/@nuxt/typescript-runtime/bin/nuxt-ts.js",
  "build": "node -r tsconfig-paths/register ./node_modules/@nuxt/typescript-runtime/bin/nuxt-ts.js build",
  "generate": "node -r tsconfig-paths/register ./node_modules/@nuxt/typescript-runtime/bin/nuxt-ts.js generate",
  "start": "node -r tsconfig-paths/register ./node_modules/@nuxt/typescript-runtime/bin/nuxt-ts.js start"
},

こうすると、 tsconfigのpathsが使えるようになりました!

お試しください^^

13
13
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?