DefinitelyTyped/types/catbox/tsconfig.json
Silas Rech 484883ab60 [catbox] Fix classes (#18072)
* [catbox] Fix classes

* Class extends Class => Class implements Interface

* Add TSLint configuration

* Add initial tests (Basically testing if I understood how the tests here work 😏)

* Fix tests

* Don't set Memory to any
2017-07-20 08:58:40 -07:00

23 lines
450 B
JSON

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