app.ts
js
1import { Entry } from './index'; 2 3console.log((new Entry()).name()); 4
index.ts
js
1export class Entry { 2 public name(): string { 3 return 'my entry'; 4 } 5}
コードは上記になります。
自分はVScodeを普段使用していますので、設定ファイルは以下になります。
tsconfig.json
js
1{ 2 "compilerOptions": { 3 "target": "ES2017", 4 "module": "commonjs", 5 "strict": true, 6 "moduleResolution": "node", 7 "esModuleInterop": true 8 } 9}
.vscode/task.json
js
1{ 2 // See https://go.microsoft.com/fwlink/?LinkId=733558 3 // for the documentation about the tasks.json format 4 "version": "2.0.0", 5 "tasks": [ 6 { 7 "type": "typescript", 8 "tsconfig": "tsconfig.json", 9 "option": "watch", 10 "problemMatcher": [ 11 "$tsc-watch" 12 ], 13 "group": { 14 "kind": "test", 15 "isDefault": true 16 } 17 } 18 ] 19}
errorの内容は
Uncaught ReferenceError: exports is not defined こちらになります。
どなたか、ご教授いただける方いらっしゃいますでしょうか?
宜しくお願い致します。

回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2018/06/06 09:05