Merge branch 'master' into fix-ts-vitest-installation

This commit is contained in:
Alexandre
2022-08-27 11:14:35 +02:00
committed by GitHub
52 changed files with 10445 additions and 4512 deletions
+7 -7
View File
@@ -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"
}
}
+642 -466
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -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);
+4 -2
View File
@@ -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'],
}
},
});