mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-24 10:40:23 +00:00
22 lines
562 B
JSON
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"
|
|
]
|
|
}
|