forked from angular/angularfire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
37 lines (37 loc) · 960 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
27
28
29
30
31
32
33
34
35
36
37
{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "commonjs",
"target": "es5",
"noImplicitAny": false,
"outDir": "dist",
"rootDir": "src",
"sourceMap": true,
"inlineSources": true,
"declaration": true,
"removeComments": true,
"lib": [
"es2015",
"dom"
]
},
"files": [
"src/angularfire2.ts",
"src/angularfire2.spec.ts",
"src/database/index.ts",
"src/database/firebase_list_factory.spec.ts",
"src/database/firebase_object_factory.spec.ts",
"src/database/firebase_list_observable.spec.ts",
"src/database/firebase_object_observable.spec.ts",
"src/database/query_observable.spec.ts",
"src/auth/auth.ts",
"src/auth/auth.spec.ts",
"src/auth/auth_backend.spec.ts",
"typings/index.d.ts",
"node_modules/zone.js/dist/zone.js.d.ts"
],
"angularCompilerOptions": {
"skipTemplateCodegen": true
}
}