mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-06-11 07:44:02 +08:00
* 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
21 lines
428 B
JSON
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"
|
|
]
|
|
}
|