mirror of
https://github.com/zhigang1992/firebase-tools.git
synced 2026-01-12 22:47:24 +08:00
* 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
19 lines
357 B
JSON
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/**/*"]
|
|
}
|