19 строки
531 B
JSON
19 строки
531 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist", // './' prefix not necessary
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"noImplicitAny": false,
|
|
"target": "ES6",
|
|
"module" : "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"jsx": "react",
|
|
"downlevelIteration": true,
|
|
"experimentalDecorators": true
|
|
},
|
|
"exclude": [
|
|
"dist", // Avoids error: Cannot write file '/dist/components/FilterBar.d.ts' because it would overwrite input file.
|
|
"index.tsx", // For webpack-dev-server only. Prevent index.d.ts being generated to /dist.
|
|
]
|
|
}
|