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`
This commit is contained in:
CodeAnimal
2017-10-17 17:02:32 +01:00
committed by Andy
parent 2149177050
commit 14dd64b8cb
4 changed files with 63 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{
"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"
]
}