Skip to content

Commit

Permalink
Fix compilation when using ts-loader
Browse files Browse the repository at this point in the history
See TypeStrong/ts-loader#942. I think this can be deleted once that PR is merged and released.
  • Loading branch information
jasongrout committed May 31, 2019
1 parent 79933e7 commit a2c7a1a
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 7 deletions.
3 changes: 2 additions & 1 deletion tests/test-console/tsconfig.json
Expand Up @@ -4,7 +4,8 @@
"outDir": "build",
"types": ["mocha"],
"composite": false,
"rootDir": "src"
"rootDir": "src",
"tsBuildInfoFile": "tsconfig.tsbuildinfo"
},
"include": ["src/*"],
"references": [
Expand Down
3 changes: 2 additions & 1 deletion tests/test-csvviewer/tsconfig.json
Expand Up @@ -4,7 +4,8 @@
"outDir": "build",
"types": ["mocha", "node"],
"composite": false,
"rootDir": "src"
"rootDir": "src",
"tsBuildInfoFile": "tsconfig.tsbuildinfo"
},
"include": ["src/*"],
"references": [
Expand Down
3 changes: 2 additions & 1 deletion tests/test-docmanager/tsconfig.json
Expand Up @@ -4,7 +4,8 @@
"outDir": "build",
"types": ["mocha"],
"composite": false,
"rootDir": "src"
"rootDir": "src",
"tsBuildInfoFile": "tsconfig.tsbuildinfo"
},
"include": ["src/*"],
"references": [
Expand Down
3 changes: 2 additions & 1 deletion tests/test-filebrowser/tsconfig.json
Expand Up @@ -4,7 +4,8 @@
"outDir": "build",
"types": ["mocha"],
"composite": false,
"rootDir": "src"
"rootDir": "src",
"tsBuildInfoFile": "tsconfig.tsbuildinfo"
},
"include": ["src/*"],
"references": [
Expand Down
3 changes: 2 additions & 1 deletion tests/test-notebook/tsconfig.json
Expand Up @@ -4,7 +4,8 @@
"outDir": "build",
"types": ["mocha"],
"composite": false,
"rootDir": "src"
"rootDir": "src",
"tsBuildInfoFile": "tsconfig.tsbuildinfo"
},
"include": ["src/*"],
"references": [
Expand Down
3 changes: 2 additions & 1 deletion tests/test-rendermime/tsconfig.json
Expand Up @@ -4,7 +4,8 @@
"outDir": "build",
"types": ["mocha", "node"],
"composite": false,
"rootDir": "src"
"rootDir": "src",
"tsBuildInfoFile": "tsconfig.tsbuildinfo"
},
"include": ["src/*"],
"references": [
Expand Down
3 changes: 2 additions & 1 deletion tests/test-terminal/tsconfig.json
Expand Up @@ -4,7 +4,8 @@
"outDir": "build",
"types": ["mocha"],
"composite": false,
"rootDir": "src"
"rootDir": "src",
"tsBuildInfoFile": "tsconfig.tsbuildinfo"
},
"include": ["src/*"],
"references": [
Expand Down

0 comments on commit a2c7a1a

Please sign in to comment.