我通过以下命令下载了rxjs:
npm install @reactivex/rxjs
文件夹src中的
tsconfig.json
看起来像:
{
"compilerOptions": {
"noImplicitAny": false,
"noEmitOnError": true,
"removeComments": false,
"sourceMap": true,
"target": "es5",
"outDir": "../wwwroot/js"
},
"exclude": [
"node_modules",
"wwwroot"
]
}
有什么问题?
答案 0 :(得分:3)
您可能需要在tsconfig.json
文件中定位ES6。
tsconfig.json
"compilerOptions": {
"target": "ES6"
}
或者,您可能需要安装一个处理Promises(以及更多)的polyfill,并且具有Typescript的类型,例如core-js。
npm install typings core-js
typings install –global –save dt~core-js