Skip to content

Commit f81cd1b

Browse files
committed
Change ts module to nodenext
1 parent d845495 commit f81cd1b

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

packages/components/src/index.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
export type { FilterOptionOption } from "react-select/dist/declarations/src/filters";
1+
export type { FilterOptionOption } from "react-select";
22
export { default as Btn } from "./Btn";
33
export { default as Button } from "./Button";
4-
export { default as ButtonWithPopup } from "./ButtonWithPopup";
54
export { default as ButtonsWithError } from "./ButtonsWithError";
5+
export { default as ButtonWithPopup } from "./ButtonWithPopup";
66
export { default as CellDropdown } from "./CellDropdown";
77
export { default as CharCount } from "./CharCount";
88
export { default as Checkbox } from "./Checkbox";
99
export { default as CodeBlock } from "./CodeBlock";
1010
export { default as CommentForm } from "./CommentForm";
11-
export { default as CopyButton } from "./CopyButton";
1211
export { default as CopyableField } from "./CopyableField";
12+
export { default as CopyButton } from "./CopyButton";
1313
export { default as ErrorMsg } from "./ErrorMsg";
1414
export {
1515
default as ErrorMsgProvider,
@@ -44,13 +44,13 @@ export { default as SmallLoader } from "./SmallLoader";
4444
export { default as SuccessMsg } from "./SuccessMsg";
4545
export * from "./Tabs";
4646
export { useTabsContext } from "./Tabs/context";
47-
export { default as Textarea } from "./Textarea";
48-
export { default as TextareaWithMarkdown } from "./TextareaWithMarkdown";
49-
export { default as Tooltip } from "./Tooltip";
50-
export { default as DiscordButton } from "./TransparentButtonWithIcon/ForDiscord";
51-
export { default as GithubButton } from "./TransparentButtonWithIcon/ForGithub";
5247
export { default as ThemeProvider, useThemeContext } from "./tailwind/context";
5348
export { mergeConfig } from "./tailwind/mergeConfig";
5449
export { tailwindColorTheme as hostedTailwindColorTheme } from "./tailwind/theme/hosted/colors";
5550
export { tailwindColorTheme as workbenchTailwindColorTheme } from "./tailwind/theme/workbench/colors";
5651
export { IThemeColors, IThemeRGB } from "./tailwind/types";
52+
export { default as Textarea } from "./Textarea";
53+
export { default as TextareaWithMarkdown } from "./TextareaWithMarkdown";
54+
export { default as Tooltip } from "./Tooltip";
55+
export { default as DiscordButton } from "./TransparentButtonWithIcon/ForDiscord";
56+
export { default as GithubButton } from "./TransparentButtonWithIcon/ForGithub";

packages/components/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"outDir": "dist",
1010
"target": "ES2015",
1111
"lib": ["DOM", "ESNext"],
12-
"module": "ESNext",
13-
"moduleResolution": "Node",
12+
"module": "nodenext",
13+
"moduleResolution": "nodenext",
1414
"jsx": "react",
1515
"emitDeclarationOnly": true,
1616
"resolveJsonModule": true,

packages/contexts/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"outDir": "dist",
1010
"target": "ES2015",
1111
"lib": ["DOM", "ESNext"],
12-
"module": "ESNext",
13-
"moduleResolution": "Node",
12+
"module": "nodenext",
13+
"moduleResolution": "nodenext",
1414
"jsx": "react",
1515
"emitDeclarationOnly": true,
1616
"resolveJsonModule": true,

packages/hooks/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"outDir": "dist",
1010
"target": "ES2015",
1111
"lib": ["DOM", "ESNext"],
12-
"module": "ESNext",
13-
"moduleResolution": "Node",
12+
"module": "nodenext",
13+
"moduleResolution": "nodenext",
1414
"jsx": "react",
1515
"emitDeclarationOnly": true,
1616
"resolveJsonModule": true,

packages/resource-utils/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"outDir": "dist",
1010
"target": "ES2015",
1111
"lib": ["DOM", "ESNext"],
12-
"module": "ESNext",
13-
"moduleResolution": "Node",
12+
"module": "nodenext",
13+
"moduleResolution": "nodenext",
1414
"jsx": "react",
1515
"emitDeclarationOnly": true,
1616
"resolveJsonModule": true,

packages/utils/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"outDir": "dist",
1010
"target": "ES2015",
1111
"lib": ["DOM", "ESNext"],
12-
"module": "ESNext",
13-
"moduleResolution": "Node",
12+
"module": "nodenext",
13+
"moduleResolution": "nodenext",
1414
"jsx": "react",
1515
"emitDeclarationOnly": true,
1616
"resolveJsonModule": true,

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"compilerOptions": {
1212
"target": "ES2015",
1313
"lib": ["DOM", "esnext"],
14-
"module": "esnext",
15-
"moduleResolution": "node",
14+
"module": "nodenext",
15+
"moduleResolution": "nodenext",
1616
"jsx": "react",
1717
"resolveJsonModule": true,
1818
"esModuleInterop": true,

0 commit comments

Comments
 (0)