DefinitelyTyped/types/egg/tsconfig.json
Eward Song 102a19de6a add egg and egg-mock (#15971)
* feat: add egg and egg-mock

* chore: remove disable, add typescript version

* chore: add some doc, and change interface name to CamelCased
2017-04-20 08:16:54 -07:00

23 lines
474 B
JSON

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