我一直在使用Visual Studio 2017从angular.io网站完成英雄教程。我尝试添加.ts文件,但没有创建匹配的.map或.js文件。
我的tsconfig.json看起来像这样
{
"compileOnSave": true,
"buildOnSave": true,
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [ "es2015", "dom" ],
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true
},
"include": [
"./*"
],
"exclude": [
"node_modules",
"wwwroot"
]
}
如果我删除此文件以使用项目的属性而不是配置文件,那么项目将无法编译,也无法构建文件。
如何在构建或创建新的.ts文件时创建.map和.js文件?
答案 0 :(得分:1)
我假设你正在使用Angular CLI,因为你正在做英雄教程。
webpack运行顺畅吗?你能否发布你有ng serve
输出的文件夹结构?
我们在聊天中发言并讨论了一些架构和设置。