DefinitelyTyped/types/calidation/tsconfig.json
Ray Knight d30cbbd8cd feat: add calidation (#37009)
* feat: add calidation

* fix: update tslint rule, define typescript version

* fix: remove lint rule, use ts@3.5 omit
2019-07-19 13:44:08 -07:00

26 lines
535 B
JSON

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