Skip to content

Commit

Permalink
build: fix tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Jan 21, 2024
1 parent 1dd6d06 commit 8a532d0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions src/BubbleSetPath.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import type cy from 'cytoscape';
import {
IOutlineOptions,
type IOutlineOptions,
Area,
createLineInfluenceArea,
createGenericInfluenceArea,
createRectangleInfluenceArea,
Rectangle,
Circle,
calculatePotentialOutline,
IRectangle,
IPotentialOptions,
type IRectangle,
type IPotentialOptions,
defaultOptions,
calculateVirtualEdges,
IRoutingOptions,
ILine,
type IRoutingOptions,
type ILine,
Line,
} from 'bubblesets-js';
import throttle from 'lodash.throttle';
Expand Down
4 changes: 2 additions & 2 deletions src/BubbleSetsPlugin.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type cy from 'cytoscape';
import { layers, ISVGLayer } from 'cytoscape-layers';
import BubbleSetPath, { IBubbleSetPathOptions } from './BubbleSetPath';
import { layers, type ISVGLayer } from 'cytoscape-layers';
import BubbleSetPath, { type IBubbleSetPathOptions } from './BubbleSetPath';

export interface IBubbleSetsPluginOptions extends IBubbleSetPathOptions {
layer?: ISVGLayer;
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"sourceMap": true,
"strict": true,
"removeComments": true,
"importsNotUsedAsValues": "error",
"verbatimModuleSyntax": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"strictBindCallApply": true,
Expand Down

0 comments on commit 8a532d0

Please sign in to comment.