Skip to content

Commit

Permalink
Support lumino v2
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollonval committed Aug 10, 2023
1 parent f076932 commit 21d3761
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion extension-gate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"test": "echo \"This is only an interface, no tests necessary.\" && exit 0"
},
"dependencies": {
"@lumino/coreutils": "^1.4.2"
"@lumino/coreutils": "^1.4.2 || ^2.0.0"
},
"devDependencies": {
"rimraf": "~3.0.0",
Expand Down
13 changes: 5 additions & 8 deletions extension-gate/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,23 @@
{
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"strict": true,
"outDir": "lib",
"rootDir": "src",
"allowSyntheticDefaultImports": true,
"composite": true,
"declaration": true,
"esModuleInterop": true,
"incremental": true,
"jsx": "react",
"module": "commonjs",
"module": "esnext",
"moduleResolution": "node",
"noEmitOnError": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"preserveWatchOutput": true,
"resolveJsonModule": true,
"sourceMap": true,
"outDir": "lib",
"rootDir": "src",
"strict": true,
"strictNullChecks": true,
"target": "es2017",
"types": []
"target": "ES2018"
},
"include": ["src/*"]
}

0 comments on commit 21d3761

Please sign in to comment.