DefinitelyTyped/types/trouter/tsconfig.json
Markus 08257fbe2b Added new types for trouter (#33557)
* Added types for trouter

* Fixes

* fix: include all valid HTTP methods

* feat: add use(); bump to 3.0

* fix: change export

Co-Authored-By: lukeed <luke.edwards05@gmail.com>

* fix: use require in test

* fix: incorrect import statement

Co-Authored-By: lukeed <luke.edwards05@gmail.com>

* fix: use namespace

* fix: remove `false` return option;

- part of 3.0 release
2019-03-11 15:25:41 -07:00

24 lines
488 B
JSON

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