我在名为spartan.ts的单独文件中定义了一个类,这就是它的外观:
class Spartan {
name: string;
constructor(name: string) {
this.name = name;
}
test() {
return this.name;
}
}
module.exports = Spartan;
然后我将其导入到另一个看起来像这样的文件中:
var Spartan = require("../entities/spartan.ts");
var mySpartan = new Spartan("myName");
console.log(mySpartan.test())
我的tsconfing.json看起来像这样:
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "es2015",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2017",
"dom"
]
}
}
然后我得到这个错误:
SyntaxError: Unexpected token :
at createScript (vm.js:80:10)
at Object.runInThisContext (vm.js:139:10)
at Module._compile (module.js:616:28)
at Object.Module._extensions..js (module.js:663:10)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (/U.../routeRepository.ts:2:15)
答案 0 :(得分:1)
您可能应该改用ES2015模块语法进行导入/导出,例如:
export class Spartan {
name: string;
constructor(name: string) {
this.name = name;
}
test() {
return this.name;
}
}
然后:
import { Spartan } from "../entities/spartan.ts";
let mySpartan = new Spartan("myName");
console.log(mySpartan.test())