I am very new to TypeScript and have just been setting up a project with Grunt. When compiling I receive a large amount duplicate errors in relation to the TypeScript grunt-typescript folder. Any advice would be appreciated!
Bens-MacBook-Pro:Chapter1 bendavies$ Grunt Running "watch" task Waiting... >> File "app.ts" changed. Running "typescript:base" (typescript) task >> node_modules/grunt-typescript/node_modules/typescript/lib/lib.core.d.ts(83,5): error TS2300: Duplicate identifier 'configurable'. This is just a subset of the errors, but they all seem to be duplicate related!
Cheers!
Here is my tsconfig.json file if that's any help!
{ "compilerOptions": { "outDir": "tasks", "target": "ES5", "module": "commonjs", "noEmitOnError": true, "diagnostics": true, "noLib": true, "experimentalDecorators": true }, "files": [ "src/index.ts", "node_modules/typescript/lib/lib.core.d.ts", "typings/lib.support.d.ts" ], "exclude": [ "node_modules", "typings/browser.d.ts", "typings/browser/**" ] }