File tree Expand file tree Collapse file tree 5 files changed +5
-13
lines changed
Expand file tree Collapse file tree 5 files changed +5
-13
lines changed Original file line number Diff line number Diff line change 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" }]
Original file line number Diff line number Diff line change @@ -3,9 +3,7 @@ import react from "@vitejs/plugin-react-swc";
33import { resolve } from "node:path" ;
44
55export default defineConfig ( {
6- plugins : [
7- react ( ) ,
8- ] ,
6+ plugins : [ react ( ) ] ,
97 resolve : {
108 alias : {
119 "@" : resolve ( __dirname , "src" ) ,
Original file line number Diff line number Diff line change 11import { 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" ;
63import { Component } from "./Component" ;
74
85export interface ChildrenProps {
Original file line number Diff line number Diff line change 11// Types
22export type { Contribution } from "@/types/model/contribution" ;
33export 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" ;
85export type {
96 ComponentChangeEvent ,
107 ComponentChangeHandler ,
Original file line number Diff line number Diff line change 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" }]
You can’t perform that action at this time.
0 commit comments