{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false
},
"exclude": [
"node_modules",
"typings/main",
"typings/main.d.ts"
]
}
Attempting to transition an angular2/beta8 application to RC1, following the restructuring outlined in the Quickstart guide.
After copying the tsconfig.json file into the project directory and preparing everything else accordingly, running tsc
results in numerous errors within files located in the node_modules folder. Why is the compiler even searching there in the first place?