Skip to content

Commit

Permalink
fix peerdependency
Browse files Browse the repository at this point in the history
  • Loading branch information
MP281X committed May 10, 2024
1 parent a4590d0 commit 7f15661
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "module",
"version": "1.1.15",
"version": "1.1.16",
"name": "@mp281x/shared-config",
"publishConfig": { "registry": "https://npm.pkg.github.com/@mp281x" },

Expand All @@ -26,9 +26,6 @@
},

"dependencies": {
"vitest": "^1.6.0",
"typescript": "^5.4.5",

"@fsouza/prettierd": "latest",
"prettier-plugin-astro": "0.13.0",
"prettier-plugin-svelte": "3.2.3",
Expand All @@ -43,6 +40,9 @@
"eslint-plugin-perfectionist": "2.10.0"
},

"peerDependencies": { "vitest": "^1.6.0", "typescript": "^5.4.5" },
"peerDependenciesMeta": { "vitest": { "optional": true } },

"devDependencies": {
"tsup": "8.0.2",
"yaml": "2.4.2",
Expand Down
1 change: 1 addition & 0 deletions src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"jsx": "preserve", // allow importing jsx/tsx files but don't transpile the jsx templates
"resolveJsonModule": true, // allow json import
"allowImportingTsExtensions": true, // allow importing ts file
"allowSyntheticDefaultImports": true, // impot X from "x" instead of import * as X from "x"
"forceConsistentCasingInFileNames": true, // no different casing importing the same file
"verbatimModuleSyntax": true, // if i only import a type from a file don't drop the import after compilation
"noEmit": true, // don't output code
Expand Down

0 comments on commit 7f15661

Please sign in to comment.