回答編集履歴
1
最終コマンドの追加
answer
CHANGED
@@ -17,4 +17,9 @@
|
|
17
17
|
npx tsc Test.ts Test2.ts --outDir ./dist
|
18
18
|
```
|
19
19
|
|
20
|
-
他必要な設定があれば追加してください。
|
20
|
+
他必要な設定があれば追加してください。
|
21
|
+
|
22
|
+
tsconfig の内容からするとこうでしょうか
|
23
|
+
```shell
|
24
|
+
npx tsc Test.ts Test2.ts --outDir ./dist --target es6 --module commonjs --rootDir ./
|
25
|
+
```
|