forked from shlomiassaf/ngx-modialog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.release.json
53 lines (53 loc) · 1.04 KB
/
tsconfig.release.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
46
47
48
49
50
51
52
53
{
"compilerOptions": {
"module": "ES6",
"target": "ES5",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noEmitHelpers": false,
"noImplicitAny": false,
"removeComments": false,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"declaration": true,
"inlineSources": true,
"outDir": "dist_package/esm",
"baseUrl": ".",
"paths": {
"angular2-modal": ["src/lib"]
},
"lib": [
"dom",
"es6"
],
"types": [
"chai",
"hammerjs",
"source-map",
"uglify-js",
"webpack"
]
},
"awesomeTypescriptLoaderOptions": {
"forkChecker": true,
"useWebpackText": true
},
"include": [
"src/lib/**/*"
],
"exclude": [
"node_modules",
"node_modules/@types/core-js/index.d.ts",
"dist",
"gulp",
"typings"
],
"angularCompilerOptions": {
"genDir": ".tmp",
"debug": false,
"skipMetadataEmit": false
}
}