我正在阅读angular2引用,发现了这个tsconfig.json。我想知道以下参数是什么意思?
tsconfig.json
{ "compilerOptions": { "target": "es5", "module": "system", "moduleResolution": "node", "sourceMap": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "removeComments": false, "noImplicitAny": false }, "exclude": [ "node_modules" ] }
该tsconfig.json文件对应于TypeScript编译器(tsc)的配置。
这些链接可以为您提供有关这些属性的详细信息:
这里有一些提示:
system
commonjs
.d.ts
node
node_modules
require('module-name')