DefinitelyTyped/types/nestdb/tsconfig.json
Alex 6214765f1f Add typings for NestDB (#39063)
* Add typings for NestDB

Based on the existing NeDB typings, since NestDB is a fork.

* Update index.d.ts

* Update nestdb-tests.ts
2019-10-16 14:59:28 -07:00

23 lines
488 B
JSON

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