what is the purpose of tsconfig.json?
问题 I was reading angular2 referrences and found this tsconfig.json . I would like to know what the following parameters mean? { "compilerOptions": { "target": "es5", "module": "system", "moduleResolution": "node", "sourceMap": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "removeComments": false, "noImplicitAny": false }, "exclude": [ "node_modules" ] } 回答1: The tsconfig.json file corresponds to the configuration of the TypeScript compiler (tsc). These links could give you