File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
packages/typescript-runtime Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ const hooks: Hooks = {
11
11
project : tsConfigPath ,
12
12
compilerOptions : {
13
13
module : 'commonjs'
14
- }
14
+ } ,
15
+ transpileOnly : true
15
16
} )
16
17
} ,
17
18
Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ describe('run:before hook', () => {
17
17
project : path . resolve ( 'path' , 'tsconfig.json' ) ,
18
18
compilerOptions : {
19
19
module : 'commonjs'
20
- }
20
+ } ,
21
+ transpileOnly : true
21
22
} )
22
23
} )
23
24
@@ -28,7 +29,8 @@ describe('run:before hook', () => {
28
29
project : path . resolve ( 'custom/tsconfig.json' ) ,
29
30
compilerOptions : {
30
31
module : 'commonjs'
31
- }
32
+ } ,
33
+ transpileOnly : true
32
34
} )
33
35
} )
34
36
@@ -39,7 +41,8 @@ describe('run:before hook', () => {
39
41
project : path . resolve ( 'custom/tsconfig.json' ) ,
40
42
compilerOptions : {
41
43
module : 'commonjs'
42
- }
44
+ } ,
45
+ transpileOnly : true
43
46
} )
44
47
} )
45
48
} )
You can’t perform that action at this time.
0 commit comments