Próbując wdrożyć moduł zgodnie z oficjalnym podręcznikiem , otrzymuję następujący komunikat o błędzie:
Uncaught ReferenceError: nie zdefiniowano eksportu
w app.js: 2
Ale nigdzie w moim kodzie nie używam tego imienia exports
.
Jak mogę to naprawić?
Pliki
app.ts
let a = 2;
let b:number = 3;
import Person = require ('./mods/module-1');
moduł-1.t
export class Person {
constructor(){
console.log('Person Class');
}
}
export default Person;
tsconfig.json
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"noImplicitAny": false,
"sourceMap": true,
"outDir": "scripts/"
},
"exclude": [
"node_modules"
]
}