DefinitelyTyped/types/is-ci/tsconfig.json
Arne Schubert 600f681913 Add type definition for is-ci (#25016)
* Add type defintions for the is-ci package

* Apply settings from generator

* Merge changes from generator

* Set strictFunctionChecks to true
2018-04-16 15:50:56 -07:00

24 lines
486 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",
"is-ci-tests.ts"
]
}