【发布时间】:2016-09-21 15:57:06
【问题描述】:
我正在阅读 angular2 参考并找到了这个tsconfig.json。
我想知道以下参数是什么意思?
{
"compilerOptions": {
"target": "es5",
"module": "system",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false
},
"exclude": [
"node_modules"
]
}
【问题讨论】:
-
+1 提出一个好问题。阅读文档(尤其是 typescript 或 Angular)通常会让你比刚开始时更加困惑。有人在网站上解释它很棒。
-
同意@sgroves。这是一个有效的问题。
标签: json typescript angular tsconfig