-
Notifications
You must be signed in to change notification settings - Fork 265
/
tsconfig-aot.json
45 lines (45 loc) · 1.72 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
45
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": true,
"outDir": "target/www/app",
"lib": [
"es2015",
"dom"
],
"typeRoots": [
"node_modules/@types"
]
},
"files": [
"./src/main/webapp/app/app.module.ts",
"./src/main/webapp/app/app.main-aot.ts",
"src/main/webapp/app/features/about/about.module.ts",
"src/main/webapp/app/features/legal/legal.module.ts",
"src/main/webapp/app/features/bernie/bernie.module.ts",
"src/main/webapp/app/features/books/books.module.ts",
"src/main/webapp/app/features/chat/chat.module.ts",
"src/main/webapp/app/features/contact/contact.module.ts",
"src/main/webapp/app/features/counter/counter.module.ts",
"src/main/webapp/app/features/game/game.module.ts",
"src/main/webapp/app/features/heroes/heroes.module.ts",
"src/main/webapp/app/features/messages/messages.module.ts",
"src/main/webapp/app/features/notes/notes.module.ts",
"src/main/webapp/app/features/talks/talks.module.ts",
"src/main/webapp/app/features/wiki/wiki.module.ts",
"src/main/webapp/app/features/meals/home/home.module.ts",
"src/main/webapp/app/features/meals/recipe/recipe.module.ts"
],
"angularCompilerOptions": {
"genDir": "target/aot",
"entryModule": "src/main/webapp/app/app.module#Jh4TestAppModule",
"skipMetadataEmit": true
}
}