DefinitelyTyped/types/browser-resolve/tsconfig.json
Piotr Błażejewicz (Peter Blazejewicz) 5ed9dc7696
update(browser-resolve): align with v1.11 (#42807)
- add version to TS Header
- align package configuration
- align package definition with the orignal package details:
https://github.com/defunctzombie/node-browser-resolve/blob/master/index.js
- remove 3-slashes reference as duplicate
- minor refine for `callback` `error` parameter (can be null as per
usage)
- update authors
- update tests

https://github.com/defunctzombie/node-browser-resolve#api

Thanks!
2020-03-14 18:24:15 -07:00

24 lines
496 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",
"browser-resolve-tests.ts"
]
}