我有打字稿编译的问题。有没有其他人收到这个错误?
node_modules/@types/node/index.d.ts(20,1):错误 TS1084:“参考”指令语法无效。
tsconfig.json:
{
"compileOnSave": false,
"compilerOptions": {
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./app",
"target": "es6",
"module": "commonjs",
"declaration": false,
"noImplicitAny": false,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"listFiles": false,
"skipLibCheck": true
},
"include": [
"./app/**/*.ts"
]
}
package.json 中的打字稿版本: "typescript": "^2.6.1"
原文由 heyJoe 发布,翻译遵循 CC BY-SA 4.0 许可协议
有同样的问题。打开文件 ../node_modules/@types/node/index.d.ts
并删除第三个斜杠
重新编译