พยายามติดตั้งโมดูลตามคู่มืออย่างเป็นทางการฉันได้รับข้อความแสดงข้อผิดพลาดนี้:
Uncaught ReferenceError: ไม่ได้กำหนดการส่งออก
ที่ app.js: 2
แต่ไม่มีที่ไหนในรหัสของฉันฉันไม่เคยใช้ชื่อexports
นี้
ฉันจะแก้ไขปัญหานี้ได้อย่างไร?
ไฟล์
app.ts
let a = 2;
let b:number = 3;
import Person = require ('./mods/module-1');
โมดูล -1t
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"
]
}