Skip to content

Commit eb14a12

Browse files
committed
format
1 parent e4c49ba commit eb14a12

File tree

5 files changed

+5
-13
lines changed

5 files changed

+5
-13
lines changed

chartlets.js/packages/demo/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"noUnusedParameters": true,
2626
"noFallthroughCasesInSwitch": true,
2727
"strictNullChecks": true,
28-
"verbatimModuleSyntax": true,
28+
"verbatimModuleSyntax": true
2929
},
3030
"include": ["src"],
3131
"references": [{ "path": "./tsconfig.node.json" }]

chartlets.js/packages/demo/vite.config.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ import react from "@vitejs/plugin-react-swc";
33
import { resolve } from "node:path";
44

55
export default defineConfig({
6-
plugins: [
7-
react(),
8-
],
6+
plugins: [react()],
97
resolve: {
108
alias: {
119
"@": resolve(__dirname, "src"),

chartlets.js/packages/lib/src/component/Children.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
import { type ComponentChangeHandler } from "@/types/state/event";
2-
import {
3-
type ComponentNode,
4-
isComponentState,
5-
} from "@/types/state/component";
2+
import { type ComponentNode, isComponentState } from "@/types/state/component";
63
import { Component } from "./Component";
74

85
export interface ChildrenProps {

chartlets.js/packages/lib/src/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
// Types
22
export type { Contribution } from "@/types/model/contribution";
33
export type { ContributionState } from "@/types/state/contribution";
4-
export type {
5-
ComponentState,
6-
ContainerState,
7-
} from "@/types/state/component";
4+
export type { ComponentState, ContainerState } from "@/types/state/component";
85
export type {
96
ComponentChangeEvent,
107
ComponentChangeHandler,

chartlets.js/packages/lib/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"noUnusedParameters": true,
2626
"noFallthroughCasesInSwitch": true,
2727
"strictNullChecks": true,
28-
"verbatimModuleSyntax": true,
28+
"verbatimModuleSyntax": true
2929
},
3030
"include": ["src"],
3131
"references": [{ "path": "./tsconfig.node.json" }]

0 commit comments

Comments
 (0)