Skip to content

Commit d9c7f3a

Browse files
author
Matt Lewis
committed
build: only run ngc on separate modules
1 parent 579a51a commit d9c7f3a

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

tsconfig-ngc.json

+8-5
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,28 @@
44
"module": "es2015",
55
"declaration": true,
66
"stripInternal": true,
7-
"outDir": "./dist",
7+
"outDir": "./dist/modules",
88
"types": [],
99
"emitDecoratorMetadata": false,
1010
"baseUrl": "",
1111
"inlineSources": true
1212
},
1313
"files": [
14-
"src/index.ts"
14+
"src/modules/common/index.ts",
15+
"src/modules/day/index.ts",
16+
"src/modules/week/index.ts",
17+
"src/modules/month/index.ts"
1518
],
1619
"exclude": [
1720
"test",
18-
"demos"
21+
"demos",
22+
"src"
1923
],
2024
"angularCompilerOptions": {
2125
"strictMetadataEmit": true,
2226
"skipTemplateCodegen": true,
2327
"trace": true,
2428
"strictInjectionParameters": true,
25-
"preserveWhitespaces": true,
26-
"fullTemplateTypeCheck": false
29+
"preserveWhitespaces": true
2730
}
2831
}

0 commit comments

Comments
 (0)