react-csv-export
Version:
This is react-csv-export for exporting data to csv file
38 lines • 868 B
JSON
{
"compilerOptions": {
"jsx": "react",
"allowJs": false,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"experimentalDecorators": true,
"noImplicitAny": true,
"sourceMap": true,
"module": "es2015",
"target": "es5",
"moduleResolution": "node",
"suppressImplicitAnyIndexErrors": true,
"skipLibCheck": true,
"noUnusedLocals": true,
"declaration": true,
"declarationDir": "./dist",
"esModuleInterop": true,
// From TypeScript 2.9, it supports keyof number or symbol, but we only use string keys
"keyofStringsOnly": true,
"lib": [
"dom",
"es2015",
"es2015.promise",
"es2015.iterable",
"esnext.asynciterable"
],
"baseUrl": "./",
"outDir": "./dist"
},
"include": [
"./src/**/*"
],
"exclude": [
"node_modules",
"dist"
]
}