我尝试编写我的第一个有角度的2 hello world应用程序。
如果编辑器altgough代码中的错误正常工作,我会看到很多。
错误文字:
除非提供--module
标志,否则无法编译模块 装饰器仅在定位ecmascript 5及更高版本时可用。
我在配置中搜索并仅查看以下内容:
请帮助避免错误。
ts.json:
{
"compileOnSave": false,
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"moduleResolution": "node",
"outDir": "../dist/out-tsc-e2e",
"sourceMap": true,
"target": "es5",
"typeRoots": [
"../node_modules/@types"
]
}
}