Skip to content

Commit

Permalink
small cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
charkour committed Jun 1, 2024
1 parent 0b44e03 commit be0ae87
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules
package-lock.json
dist
coverage
coverage
.DS_Store
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "zustand-di",
"version": "0.0.14",
"private": false,
"description": "initialize zustand stores with react context",
"keywords": [
"zustand",
Expand Down
1 change: 1 addition & 0 deletions tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"devDependencies": {
"@testing-library/react": "15.0.7",
"@vitest/coverage-v8": "1.6.0",
"@vitest/ui": "1.6.0",
"happy-dom": "14.12.0",
"vitest": "1.6.0",
"zustand": "4.5.2"
Expand Down
1 change: 0 additions & 1 deletion tests/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// eslint-disable-next-line import/extensions
import { defineConfig } from 'vitest/config'

export default defineConfig({
Expand Down
10 changes: 8 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
"composite": false,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "react-jsx",
"module": "esnext",
Expand All @@ -13,13 +16,16 @@
"noEmit": true,
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"outDir": "dist",
"resolveJsonModule": true,
"rootDir": ".",
"skipLibCheck": true,
"strict": true,
"target": "esnext",
"verbatimModuleSyntax": true
},
"display": "zustand-di",
"exclude": [
"node_modules",
"dist"
Expand Down

0 comments on commit be0ae87

Please sign in to comment.