-
Notifications
You must be signed in to change notification settings - Fork 0
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
上を見ろ
左を見ろ