DefinitelyTyped/swagger-node-runner/tsconfig.json
Michael Mrowetz cf835a59da add swagger-node-runner (#13509)
* add swagger-node-runner

* fix: add noImplicitThis:true to tsconfig

* fix: make tslint pass
2016-12-28 10:53:53 -05:00

21 lines
442 B
JSON

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