DefinitelyTyped/types/swe-validation/tsconfig.json
Robert Hjalmers 2a84417fe0 added typings for swe-validation (#23778)
* Create index.d.ts

* Create tslint.json

* Create tsconfig.json

* Update index.d.ts

* used template

* fixed swe-validation typings and test
2018-04-09 12:12:38 -07:00

24 lines
495 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",
"swe-validation-tests.ts"
]
}