spinner and inversify error

This commit is contained in:
Giacomo Cusinato 2025-03-28 21:58:47 +09:00
parent 493ddc22d7
commit f343c7ffc5
3 changed files with 8 additions and 3 deletions

View File

@ -14,4 +14,8 @@ export class DefaultWindowService
async isFirstWindow(): Promise<boolean> { async isFirstWindow(): Promise<boolean> {
return true; return true;
} }
close() {
console.log('close');
}
} }

View File

@ -25,6 +25,7 @@
"@theia/cli": "1.41.0" "@theia/cli": "1.41.0"
}, },
"scripts": { "scripts": {
"build:dev": "theia build --config webpack.config.js --mode development",
"prepare": "theia build --mode development", "prepare": "theia build --mode development",
"start": "theia start --plugins=local-dir:../plugins", "start": "theia start --plugins=local-dir:../plugins",
"watch": "theia build --watch --mode development" "watch": "theia build --watch --mode development"

View File

@ -5,8 +5,8 @@
// @ts-check // @ts-check
const config = require('./gen-webpack.config.js'); const config = require('./gen-webpack.config.js');
config.resolve.fallback['http'] = false; config[0].resolve.fallback['http'] = false;
config.resolve.fallback['fs'] = false; config[0].resolve.fallback['fs'] = false;
/** /**
* Expose bundled modules on window.theia.moduleName namespace, e.g. * Expose bundled modules on window.theia.moduleName namespace, e.g.