-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig-aot.json
44 lines (44 loc) · 1.19 KB
/
tsconfig-aot.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
38
39
40
41
42
43
44
{
"compilerOptions": {
"noImplicitAny": true,
"moduleResolution": "node",
"target": "es5",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"declaration": true,
"outDir": "dist",
"skipDefaultLibCheck": true,
"lib": ["es6", "dom"],
"types": ["node"]
},
"files": [
"index.ts",
"components/app.ts",
"components/breadcrumb.ts",
"components/currentNav.ts",
"components/footer.ts",
"components/hero.ts",
"components/navBarVertical.ts",
"components/notificationBadge.ts",
"components/subscriptionBadge.ts",
"components/topMenu.ts",
"models/hero.ts",
"models/message.ts",
"models/navNode.ts",
"models/subscription.ts",
"services/breadcrumb.ts",
"services/configService.ts",
"services/currentNavProvider.ts",
"services/hero.ts",
"services/notifications.ts",
"services/subscriptions.ts"
],
"exclude": [
"node_modules"
],
"angularCompilerOptions": {
"genDir": "aot",
"strictMetadataEmit": true
}
}