Skip to content

Commit 5e0e905

Browse files
committed
remove skiplibcheck
1 parent 39dd828 commit 5e0e905

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

packages/javascript-kernel-extension/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import {
66
JupyterFrontEndPlugin
77
} from '@jupyterlab/application';
88

9-
import type { IKernel } from '@jupyterlite/services';
9+
import type { IKernel } from '@jupyterlite/services/lib/kernel';
1010

11-
import { IKernelSpecs } from '@jupyterlite/services';
11+
import { IKernelSpecs } from '@jupyterlite/services/lib/kernel';
1212

1313
import { JavaScriptKernel } from '@jupyterlite/javascript-kernel';
1414

packages/javascript-kernel/src/kernel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { PageConfig } from '@jupyterlab/coreutils';
22

33
import type { KernelMessage } from '@jupyterlab/services';
44

5-
import { BaseKernel, type IKernel } from '@jupyterlite/services';
5+
import { BaseKernel, type IKernel } from '@jupyterlite/services/lib/kernel';
66

77
import { PromiseDelegate } from '@lumino/coreutils';
88

packages/javascript-kernel/src/tokens.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import type { Remote } from 'comlink';
99

10-
import { IWorkerKernel } from '@jupyterlite/services';
10+
import { IWorkerKernel } from '@jupyterlite/services/lib/kernel';
1111

1212
/**
1313
* An interface for JavaScript workers.

tsconfigbase.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
"noUnusedLocals": true,
1515
"preserveWatchOutput": true,
1616
"resolveJsonModule": true,
17-
"skipLibCheck": true,
1817
"strict": true,
1918
"strictNullChecks": true,
2019
"target": "es2019",

0 commit comments

Comments
 (0)