0
1

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 1 year has passed since last update.

package.jsonのscriptsでTypeScriptファイルを実行させる

Posted at

docker-compose経由でTypeScriptで書いたサーバーサイドのコードが動くように設定している時に躓きました。。。
ルート直下にlibディレクトリを作成し、その中にdb.tsファイルを作りSequelizeModelを定義しました。 通常の.jsファイルなら

package.json
{
  "scripts": {
    "node": "node ./lib/db.js"
  }
}

npm run スクリプト名(node)で実行できますが、.tsファイルの場合は

package.json
{
  "scripts": {
    "node": "node ./lib/db.ts"
  }
}

node --trace-warningsを付与してnpm runしろと怒られてしまいます。TypeScriptのファイルを読み込みたい時はts-codeのパッケージを入れて、

npm i --save-dev ts-node

こんな感じで書いてあげましょう。

package.json
{
  "scripts": {
    "ts-node": "ts-node --compiler-options {\\\"module\\\":\\\"CommonJS\\\"}  ./lib/db.ts"
  }
}

npm run ts-node
結局の所、Modelのマイグレーションを走らせたかったので、

docker-compose.yml

version: '3.9'

services:
  app:
    build:
      context: .
    command: npm run ts-node
    volumes:
      - .:/app
    links:
      - db
    ports:
      - 3000:3000
    environment:
      - WATCHPACK_POLLING=true
  db:
    〜省略〜

こちらのコマンドを書き換えてdocker-compose upし無事立ち上がりました。

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?