mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add types for express-routes-versioning * Remove incorrect root package.json change * Remove unused package.json * Add TypeScript Version comment to top of file * Add strictFunctionTypes to tsconfig * Fix lint errors * Update test file * Fix type definitions
24 lines
506 B
JSON
24 lines
506 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",
|
|
"express-routes-versioning-tests.ts"
|
|
]
|
|
}
|