DefinitelyTyped/types/server/tsconfig.json
Santiago Aguilar Hernández 84009d1c24 Typings for 'server' package. (#27579)
* * Added typings for server package

* * Applied better practices
2018-07-26 10:09:02 -07:00

25 lines
583 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": ["es6"],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noUnusedLocals": true,
"baseUrl": "../",
"typeRoots": ["../"],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"server-tests.ts",
"reply.d.ts",
"router.d.ts",
"typings/common.d.ts",
"typings/options.d.ts"
]
}