Skip to content

Commit 144654d

Browse files
committed
chore(out-2943): undo unrequired changes
1 parent 432b85a commit 144654d

2 files changed

Lines changed: 9 additions & 30 deletions

File tree

src/components/layouts/FilterBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export const FilterBar = ({ mode }: FilterBarProps) => {
107107
padding: '0px 20px',
108108
height: '48px',
109109
}}
110-
gap={3}
110+
columnGap={3}
111111
>
112112
<SearchBar
113113
value={viewModeFilterOptions.keyword}

tsconfig.json

Lines changed: 8 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "es6",
4-
"lib": [
5-
"dom",
6-
"dom.iterable",
7-
"esnext"
8-
],
4+
"lib": ["dom", "dom.iterable", "esnext"],
95
"allowJs": true,
106
"skipLibCheck": true,
117
"strict": true,
@@ -15,37 +11,20 @@
1511
"moduleResolution": "bundler",
1612
"resolveJsonModule": true,
1713
"isolatedModules": true,
18-
"jsx": "preserve",
14+
"jsx": "react-jsx",
1915
"incremental": true,
2016
"plugins": [
2117
{
2218
"name": "next"
2319
}
2420
],
2521
"paths": {
26-
"@/*": [
27-
"./src/*"
28-
],
29-
"@api/*": [
30-
"./src/app/api/*"
31-
],
32-
"@cmd/*": [
33-
"./src/cmd/*"
34-
]
22+
"@/*": ["./src/*"],
23+
"@api/*": ["./src/app/api/*"],
24+
"@cmd/*": ["./src/cmd/*"]
3525
}
3626
},
37-
"include": [
38-
"next-env.d.ts",
39-
"**/*.ts",
40-
"**/*.tsx",
41-
".next/types/**/*.ts",
42-
"trigger.config.ts",
43-
".next/dev/types/**/*.ts"
44-
],
45-
"exclude": [
46-
"node_modules"
47-
],
48-
"types": [
49-
"jest"
50-
]
27+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "trigger.config.ts", ".next/dev/types/**/*.ts"],
28+
"exclude": ["node_modules"],
29+
"types": ["jest"]
5130
}

0 commit comments

Comments
 (0)