DefinitelyTyped/types/watchify/tsconfig.json
Piotr Błażejewicz (Peter Blazejewicz) cd8affb1c1
feat(watchify): update to version 3.11 (#42600)
- refine `poll` configuration option type
- add `close` method
- add event supports
- update configuration to recommended one
- apply DT code format

https://github.com/browserify/watchify#methods

Thanks!
2020-03-02 09:43:48 -08:00

24 lines
489 B
JSON

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