Skip to content

Commit eb019cf

Browse files
committed
chore: update befor giving up
1 parent 9ee38d3 commit eb019cf

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

packages/devtools-a11y/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"src",
99
"eslint.config.js",
1010
"tests",
11+
1112
"vite.config.ts",
1213
"vite.config.react.ts",
1314
"vite.config.solid.ts"

packages/devtools-a11y/vite.config.react.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { defineConfig, mergeConfig } from 'vitest/config'
22
import { tanstackViteConfig } from '@tanstack/vite-config'
33
import packageJson from './package.json'
4+
import tsconfig from './tsconfig.react.json'
45

56
const config = defineConfig({
67
plugins: [],
@@ -12,6 +13,10 @@ const config = defineConfig({
1213
setupFiles: ['./tests/test-setup.ts'],
1314
globals: true,
1415
},
16+
17+
esbuild: {
18+
tsconfigRaw: JSON.stringify(tsconfig),
19+
},
1520
})
1621

1722
export default mergeConfig(

packages/devtools-a11y/vite.config.solid.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ const config = defineConfig({
1818
setupFiles: ['./tests/test-setup.ts'],
1919
globals: true,
2020
},
21+
2122
esbuild: {
2223
tsconfigRaw: JSON.stringify(tsconfig),
2324
},

packages/devtools-a11y/vite.config.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { defineConfig, mergeConfig } from 'vitest/config'
22
import { tanstackViteConfig } from '@tanstack/vite-config'
33
import solid from 'vite-plugin-solid'
44
import packageJson from './package.json'
5-
import tsconfig from './tsconfig.json'
65

76
const config = defineConfig({
87
plugins: [
@@ -18,9 +17,6 @@ const config = defineConfig({
1817
setupFiles: ['./tests/test-setup.ts'],
1918
globals: true,
2019
},
21-
esbuild: {
22-
tsconfigRaw: JSON.stringify(tsconfig),
23-
},
2420
})
2521

2622
export default mergeConfig(

0 commit comments

Comments
 (0)