File tree Expand file tree Collapse file tree 3 files changed +123
-33
lines changed Expand file tree Collapse file tree 3 files changed +123
-33
lines changed Original file line number Diff line number Diff line change 87
87
"rollup-plugin-node-resolve" : " ^5.2.0" ,
88
88
"rollup-plugin-replace" : " ^2.2.0" ,
89
89
"rollup-plugin-terser" : " ^5.1.1" ,
90
- "rollup-plugin-typescript2" : " ^0.22.1 " ,
90
+ "rollup-plugin-typescript2" : " ^0.24.0 " ,
91
91
"rxjs" : " ^6.5.2" ,
92
92
"typescript" : " ^3.5.3" ,
93
93
"typings-tester" : " ^0.3.2"
Original file line number Diff line number Diff line change 1
- import path from 'path'
2
1
import nodeResolve from 'rollup-plugin-node-resolve'
3
2
import babel from 'rollup-plugin-babel'
4
3
import replace from 'rollup-plugin-replace'
@@ -20,9 +19,7 @@ export default [
20
19
nodeResolve ( {
21
20
extensions : [ '.ts' ]
22
21
} ) ,
23
- typescript ( {
24
- cacheRoot : path . resolve ( './node_modules/.cache' )
25
- } ) ,
22
+ typescript ( ) ,
26
23
babel ( )
27
24
]
28
25
} ,
@@ -39,9 +36,7 @@ export default [
39
36
nodeResolve ( {
40
37
extensions : [ '.ts' ]
41
38
} ) ,
42
- typescript ( {
43
- cacheRoot : path . resolve ( './node_modules/.cache' )
44
- } ) ,
39
+ typescript ( ) ,
45
40
babel ( )
46
41
]
47
42
} ,
@@ -57,9 +52,7 @@ export default [
57
52
replace ( {
58
53
'process.env.NODE_ENV' : JSON . stringify ( 'production' )
59
54
} ) ,
60
- typescript ( {
61
- cacheRoot : path . resolve ( './node_modules/.cache' )
62
- } ) ,
55
+ typescript ( ) ,
63
56
babel ( {
64
57
exclude : 'node_modules/**'
65
58
} ) ,
@@ -87,9 +80,7 @@ export default [
87
80
nodeResolve ( {
88
81
extensions : [ '.ts' ]
89
82
} ) ,
90
- typescript ( {
91
- cacheRoot : path . resolve ( './node_modules/.cache' )
92
- } ) ,
83
+ typescript ( ) ,
93
84
babel ( {
94
85
exclude : 'node_modules/**'
95
86
} ) ,
@@ -112,9 +103,7 @@ export default [
112
103
nodeResolve ( {
113
104
extensions : [ '.ts' ]
114
105
} ) ,
115
- typescript ( {
116
- cacheRoot : path . resolve ( './node_modules/.cache' )
117
- } ) ,
106
+ typescript ( ) ,
118
107
babel ( {
119
108
exclude : 'node_modules/**'
120
109
} ) ,
You can’t perform that action at this time.
0 commit comments