Skip to content

JavaScript TypeScript移行

Komine Shunta edited this page Jul 17, 2021 · 2 revisions
  • ファイル名を.tsに変える
  • yarn add @types/node ts-node typescript
{
  "compilerOptions": {
    "target": "ES2018",
    "allowJs": true,
    "noEmit": true,
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
    "moduleResolution": "node"
  }
}

node -r ts-node/register/transpile-only src/index.ts
# または
ts-node -T src/index.ts