There was an error while loading. Please reload this page.
1 parent f847124 commit 1a0f326Copy full SHA for 1a0f326
src/lifecycle/MatlabSession.ts
@@ -44,7 +44,8 @@ export async function launchNewMatlab (): Promise<MatlabSession> {
44
const outFile = path.join(Logger.logDir, 'matlabls_conn.json')
45
46
const watcher = chokidar.watch(outFile, {
47
- persistent: true
+ persistent: true,
48
+ useFsEvents: false
49
})
50
51
// This callback will be triggered when MATLAB has launched and writes the watched file.
webpack.config.js
@@ -5,9 +5,9 @@ const path = require('path')
5
const config = {
6
target: 'node',
7
mode: 'none',
8
- // node: {
9
- // __dirname: false
10
- // },
+ node: {
+ __dirname: false
+ },
11
entry: './src/index.ts',
12
output: {
13
path: path.resolve(__dirname, 'out'),
0 commit comments