Files
JavaScriptServices/templates/ReactReduxSpa/tsconfig.json
2016-10-28 17:36:55 +01:00

22 lines
562 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"moduleResolution": "node",
"target": "es6",
"jsx": "preserve",
"experimentalDecorators": true,
"sourceMap": true,
"skipDefaultLibCheck": true,
"lib": ["es6", "dom"],
"types": [ "webpack-env", "whatwg-fetch" ],
"paths": {
// Fixes "Duplicate identifier 'Redux'" error when packages were installed via Yarn (by specifying which .d.ts file is authoritative)
"redux": ["./node_modules/@types/redux/index"]
}
},
"exclude": [
"bin",
"node_modules"
]
}