mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-26 18:52:52 +00:00
* [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
23 lines
450 B
JSON
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"
|
|
]
|
|
}
|