-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 756 Bytes
/
tsconfig.json
File metadata and controls
31 lines (31 loc) · 756 Bytes
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
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"outDir": "dist",
"moduleResolution": "node",
"sourceMap": true,
"declaration": true,
"skipLibCheck": true,
"stripInternal": true,
"noImplicitAny": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"suppressImplicitAnyIndexErrors": true,
"lib": [
"es2015",
"dom"
]
},
"angularCompilerOptions": {
"strictMetadataEmit": true,
"skipTemplateCodegen": true,
"annotateForClosureCompiler": true,
"flatModuleOutFile": "calendar-heatmap.js",
"flatModuleId": "angular2-calendar-heatmap"
},
"files": [
"src/calendar-heatmap.component.ts"
]
}