DefinitelyTyped/types/csvrow/tsconfig.json
CodeAnimal 14dd64b8cb Add csvrow 0.1 (#20614)
* Add csvrow 0.1 definitions

* Fix dtslint errors

* add newline to end of index.d.ts

* Update tsconfig.json

Set `"strictFunctionTypes"` to `true`
2017-10-17 09:02:32 -07:00

24 lines
488 B
JSON

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