File tree Expand file tree Collapse file tree 4 files changed +12
-17
lines changed
Expand file tree Collapse file tree 4 files changed +12
-17
lines changed Original file line number Diff line number Diff line change 7373 "devDependencies" : {
7474 "vite-plugin-solid" : " ^2.11.8"
7575 }
76- }
76+ }
Original file line number Diff line number Diff line change 44 "jsxImportSource" : " react"
55 },
66 "extends" : " ../../tsconfig.json" ,
7- "exclude" : [
8- " src/solid/**"
9- ],
7+ "exclude" : [" src/solid/**" ],
108 "include" : [
119 " src/react" ,
1210 " eslint.config.js" ,
Original file line number Diff line number Diff line change 11{
2- "compilerOptions" : {
2+ "compilerOptions" : {
33 "jsx" : " preserve" ,
44 "jsxImportSource" : " solid-js"
5-
65 },
76 "extends" : " ../../tsconfig.json" ,
8- "include" : [
9- " src/solid/**"
10- ]
7+ "include" : [" src/solid/**" ]
118}
12-
Original file line number Diff line number Diff line change 11import { defineConfig , mergeConfig } from 'vitest/config'
22import { tanstackViteConfig } from '@tanstack/config/vite'
3- import solid from " vite-plugin-solid"
3+ import solid from ' vite-plugin-solid'
44import packageJson from './package.json'
55import tsconfig from './tsconfig.solid.json'
66
7-
87const config = defineConfig ( {
9- plugins : [ solid ( {
10- ssr : true
11- } ) ] ,
8+ plugins : [
9+ solid ( {
10+ ssr : true ,
11+ } ) ,
12+ ] ,
1213 test : {
1314 name : packageJson . name ,
1415 dir : './' ,
@@ -18,8 +19,8 @@ const config = defineConfig({
1819 globals : true ,
1920 } ,
2021 esbuild : {
21- tsconfigRaw : JSON . stringify ( tsconfig )
22- }
22+ tsconfigRaw : JSON . stringify ( tsconfig ) ,
23+ } ,
2324} )
2425
2526export default mergeConfig (
You can’t perform that action at this time.
0 commit comments