forked from Greentube/ngx-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
42 lines (42 loc) · 1.05 KB
/
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
38
39
40
41
42
{
"compilerOptions": {
"noImplicitAny": true,
"module": "es2015",
"target": "es5",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"declaration": true,
"moduleResolution": "node",
"noUnusedLocals": true,
"stripInternal": true,
"allowSyntheticDefaultImports": true,
"noUnusedParameters": false,
"types": [
"hammerjs",
"jasmine",
"node"
],
"lib": ["es7", "es2015", "dom"]
},
"files": [
"index.ts",
"./src/modal-dialog.module.ts",
"./src/modal-dialog.component.ts",
"./src/modal-dialog.interface.ts",
"./src/modal-dialog.service.ts",
"./src/modal-dialog-instance.service.ts",
"./src/simple-modal.component.ts",
"./tests/modal-dialog.component.spec.ts",
"./tests/modal-dialog.service.spec.ts",
"./tests/modal-dialog-instance.service.spec.ts",
"./tests/simple-modal.component.spec.ts"
],
"exclude": [
"node_modules",
"bundles"
],
"angularCompilerOptions": {
"strictMetadataEmit": true,
"skipTemplateCodegen": true
}
}