我正在使用 Visual Studio 2015 Pro 开发一个使用 Systemjs 和 Kendo UI Angular 2 组件的 .Net Core Angular 2 项目。
我正在使用 Gulp 将库文件从 node_modules 复制到“wwwroot/shared/lib”,并从 tsconfig.json 的编译中排除这两个目录。
一切正常,直到我包含一个 Kendo UI 模块,这会导致 typescript 在“node_modules/@progress/[component-name]/dist/npm/js”目录中编译 .d.ts 文件。
我在 tsconfig.json 中排除了 node_modules,所以我猜测 Kendo UI 组件代码以某种方式引用了 .d.ts 文件。
当我排除“wwwroot”而不是“wwwroot/shared/lib”时,项目编译没有错误(因为我所有的 .ts 文件都在“wwwroot”中)。
奇怪的是,当我将它改回“wwwroot/shared/lib”时,它仍然有效!但是一旦我重新启动 VS,我就会再次收到错误(?!)
所有错误都特定于“node_modules/@progress”文件夹中的 .d.ts 文件。“node_modules/@angular”中有很多 .d.ts 文件不会导致任何问题,因此这必须特定于 Kendo UI 代码。
有什么方法可以阻止 VS 编译 .d.ts 文件,无论它们的位置如何?
这是我的 tsconfig:
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true
},
"compileOnSave": true,
"exclude": [
"node_modules",
"wwwroot/shared/lib"
// ,
//"wwwroot"
]
更新
看似随机,错误将从 6 跳转到 149 - 包括错误 TS2304:找不到名称“模块”、“地图”等...
我试过添加"skipDefaultLibCheck": true
到 tsconfig 没有运气。
添加"types": [ "node" ]
将导致 tsc.exe 以代码 1 退出,除非我执行排除“wwwroot”的技巧,然后运行项目,然后再次包含它。
在我这样做之后一切都运行良好 - 直到我重新启动 VS 并且一切都崩溃了。
更新 2
我为 Visual Studio 2015 (TypeScript_Dev14Full) 安装了最新版本的 Typescript,它似乎已经解决了上述大部分问题,但我现在遇到了一个新错误:
“TS2309 构建:导出分配不能在具有其他导出元素的模块中使用。” 在 \node_modules\@types\node\index.d.ts
该错误出现两次,一次是针对 Project:“TypeScript Virtual Projects”和 Project:“DevDashLocal”。
我使用最新版本的 .Net Core SDK 和 Typescript 重建了项目,并且在新项目中收到了相同的错误。