DefinitelyTyped/types/err-code/tsconfig.json
George Zhao 33dc44bb1d
Create type for err-code (#45504)
* feat: err-code

* feat(err-code): handle null correctly

* feat(err-code): add minimum ts requirement
2020-06-21 01:02:12 -07:00

24 lines
489 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"err-code-tests.ts"
]
}