DefinitelyTyped/swagger-parser/tsconfig.json
Tobias4872 a880a3b1f9 adding swagger-parser declarations and tests (#13568)
* adding swagger-parser declarations and tests

* adding noImplicitThis option

* adding changes based on feedback from Andy

* using overloads; fixing tests
2016-12-27 20:19:33 -05:00

21 lines
437 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-parser-tests.ts"
]
}