Why is the TypeScript compiler ignoring tsconfig.json?
问题 I have this file, pasted from a tutorial (and let's face it, the disparity between docs, tuts, and examples is astounding): /scripts/tsconfig.json: { "compilerOptions": { "emitDecoratorMetadata": true, "experimentalDecorators": true, "module": "commonjs", "noEmitOnError": true, "noImplicitAny": false, "outDir": "../wwwroot/appScripts/", "removeComments": false, "sourceMap": true, "target": "es5", "moduleResolution": "node" }, "exclude": [ "node_modules", "typings/index", "typings/index.d.ts"