DefinitelyTyped/types/mousetrap/tsconfig.json
Oliver Joseph Ash 3b9164015e
🤖 Merge PR #48111 Mousetrap: convert to UMD by @OliverJAsh
* `Mousetrap`: convert to UMD

* Fix other
2020-09-23 14:32:56 -07:00

27 lines
568 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": false,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"test/index.ts",
"test/index-module.ts",
"test/global-bind.ts"
]
}