Files
firebase-tools/tsconfig.json
Bryan Kendall 7757b27446 Add support for proxying requests in apiv2 (#2996)
* add support for http_proxy variables

* use extends in tsconfigs

* add types for the proxy module

* -only

* simplify tsconfig by extending the base

* add proxy information to the readme

* add changelog entry
2021-01-06 11:52:01 -08:00

19 lines
357 B
JSON

{
"compilerOptions": {
"allowJs": true,
"checkJs": false,
"module": "commonjs",
"strict": true,
"outDir": "lib",
"removeComments": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"typeRoots": [
"node_modules/@types",
"src/types"
]
},
"include": ["src/**/*"]
}