Files
DefinitelyTyped/libpq/tsconfig.json
Vlad Rindevich 00221afddf Add node-libpq typings (#14044)
* add type definition for package: libpq

* style(libpq): change indent size to 4 white-spaces

* test(libpq): add tests for libpq

* test(libpq): more tests for libpq

* chore(libpq): create project by 'npm run new-project' script

* test(libpq): fix call signature

* fix(libpq): update in accordance with test information

* doc(libpq): improve documentation in accordance with typedoc

* fix(libpq): connection callback argument type should be Error, not string

* doc(libpq): stylize documentation

* feat(libpq): add exporting inner interfaces
2017-01-17 13:25:14 -08:00

21 lines
428 B
JSON

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