DefinitelyTyped/types/clientjs/tsconfig.json
Ian Copp c263542f44 Add clientjs (#25314)
* Add clientjs

* Correct linting for clientjs
2018-04-26 22:32:23 -07:00

24 lines
489 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",
"clientjs-tests.ts"
]
}