Merge branch 'master' into fix-ts-vitest-installation
This commit is contained in:
@@ -13,16 +13,16 @@
|
||||
},
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@testing-library/jest-dom": "^5.16.3",
|
||||
"@types/testing-library__jest-dom": "^5.14.3",
|
||||
"jsdom": "^19.0.0",
|
||||
"@testing-library/jest-dom": "^5.16.5",
|
||||
"jsdom": "^20.0.0",
|
||||
"solid-testing-library": "^0.3.0",
|
||||
"typescript": "^4.6.3",
|
||||
"vite": "^2.8.6",
|
||||
"vite-plugin-solid": "^2.2.6",
|
||||
"vitest": "^0.7.11"
|
||||
"typescript": "^4.8.2",
|
||||
"vite": "^3.0.9",
|
||||
"vite-plugin-solid": "^2.3.0",
|
||||
"vitest": "^0.22.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"solid-js": "^1.3.13"
|
||||
"solid-js": "^1.5.1"
|
||||
}
|
||||
}
|
||||
|
||||
Generated
+642
-466
File diff suppressed because it is too large
Load Diff
@@ -2,4 +2,4 @@ import { render } from 'solid-js/web';
|
||||
|
||||
import { TodoList } from './todo-list';
|
||||
|
||||
render(() => <TodoList />, document.getElementById('root'));
|
||||
render(() => <TodoList />, document.getElementById('root') as HTMLElement);
|
||||
|
||||
@@ -6,6 +6,9 @@ import solidPlugin from 'vite-plugin-solid';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [solidPlugin()],
|
||||
server: {
|
||||
port: 3000,
|
||||
},
|
||||
test: {
|
||||
environment: 'jsdom',
|
||||
globals: true,
|
||||
@@ -25,9 +28,8 @@ export default defineConfig({
|
||||
},
|
||||
build: {
|
||||
target: 'esnext',
|
||||
polyfillDynamicImport: false,
|
||||
},
|
||||
resolve: {
|
||||
conditions: ['development', 'browser'],
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user