Skip to content

Commit

Permalink
Merge branch 'release/v0.11.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
holtwick committed Dec 15, 2023
2 parents b80dc42 + 630915a commit e8997e9
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 35 deletions.
11 changes: 0 additions & 11 deletions .eslintignore

This file was deleted.

13 changes: 0 additions & 13 deletions .eslintrc

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zeed-dom",
"type": "module",
"version": "0.11.0",
"version": "0.11.1",
"description": "🌱 Lightweight offline DOM",
"author": {
"name": "Dirk Holtwick",
Expand Down
19 changes: 9 additions & 10 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
{
"compilerOptions": {
"target": "ES2019",
"target": "ES2020",
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
"ESNext",
"DOM",
"DOM.Iterable"
],
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "Node",
"module": "ES2020",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"types": [
"node",
Expand All @@ -27,12 +26,12 @@
"isolatedModules": true
},
"include": [
"src/**/*",
"index.ts"
"src/**/*"
],
"exclude": [
"_archive",
"node_modules",
"dist",
"src/**/*.spec.ts"
"node_modules"
]
}
13 changes: 13 additions & 0 deletions vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/// <reference types="vitest" />
import { resolve } from 'path'
import { defineConfig } from 'vite'

export default defineConfig({
test: {
include: ['./src/**/*.{client,test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
globals: true,
alias: {
'@/': `${resolve(process.cwd(), 'src')}/`,
},
},
})

0 comments on commit e8997e9

Please sign in to comment.