forked from firebase/firebase-admin-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
26 lines (26 loc) · 797 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"noImplicitAny": true,
"noUnusedLocals": true,
// TODO(rsgowman): enable `"strict": true,` and remove explicit setting of: noImplicitAny, noImplicitThis, alwaysStrict, strictBindCallApply, strictNullChecks, strictFunctionTypes, strictPropertyInitialization.
"noImplicitThis": true,
"alwaysStrict": true,
"strictBindCallApply": true,
//"strictNullChecks": true,
"strictFunctionTypes": true,
//"strictPropertyInitialization": true,
"lib": [
"es2015",
"esnext.asynciterable"
],
"outDir": "lib",
// We manually craft typings in src/index.d.ts instead of auto-generating them.
// "declaration": true,
"rootDir": "."
},
"files": [
"src/index.ts"
]
}