Files
DefinitelyTyped/types/check-types/tsconfig.json
idchlife d19ddb855d Types for check-types (#22554)
* Types for check-types

* added version

* added tsconfig.json

* fixes for tslint

* tests, some improv

* missing semicolon fix

* added tests file to tsconfig

* fixed errors

* removed redundant comment

* updated tests and types with info from creator of lib
2018-01-02 11:27:59 -08:00

21 lines
399 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",
"check-types-tests.ts"
]
}