sarif-web-component/tsconfig.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
2021-06-22 04:10:02 +03:00
},
"exclude": [
2021-06-22 22:20:53 +03:00
"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.
2021-06-22 04:10:02 +03:00
]
}