DefinitelyTyped/types/bookshelf/tsconfig.json
Tanguy Krotoff 42101fa4a0
[bookshelf] Update knex dependency (#43581)
* node_modules/knex/types/index.d.ts requires TypeScript 3.4

* Update knex dependency

* Switch to strict: true

* Fix error "Property 'model' has no initializer and is not definitely assigned in the constructor."

* Update Model-instance-related example

* Tests fail with TypeScript 3.5 :-/

* Rename/remove certain lodash functions from Bookshelf v0.10.0

See https://github.com/bookshelf/bookshelf/blob/1.1.1/CHANGELOG.md#breaking-changes-4
2020-04-10 16:49:21 -07:00

21 lines
404 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"lib": [
"es6"
],
"strict": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"bookshelf-tests.ts"
]
}