Files
DefinitelyTyped/csvtojson/tsconfig.json
Wayne 79246be8c7 Add declaration for csvtojson (#14881)
* Added declaration for csvtojson

* Updated indent formatting to meet DT standards

* Fixed tslint issues

* Fixed issue with Converter class incorrectly extending Transform
2017-03-09 23:40:14 -08:00

23 lines
453 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"csvtojson-tests.ts"
]
}