diff --git a/.gitignore b/.gitignore index 0dc9ec5..a3d980a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,15 @@ -node_modules/ +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/sdks +!.yarn/versions + package-lock.json -dist/ -out/ +yarn.lock +node_modules +dist +out + .idea/ .DS_Store diff --git a/.yarnrc.yml b/.yarnrc.yml new file mode 100644 index 0000000..3186f3f --- /dev/null +++ b/.yarnrc.yml @@ -0,0 +1 @@ +nodeLinker: node-modules diff --git a/package.json b/package.json index 25882bf..b5973d9 100644 --- a/package.json +++ b/package.json @@ -39,8 +39,9 @@ "eslint-plugin-n": "^15.0.0 || ^16.0.0", "eslint-plugin-promise": "^6.0.0", "ts-node": "^10.9.2", - "typescript": "*", + "typescript": "^5.5.4", "vite": "^5.1.4", "vite-plugin-cp": "^4.0.8" - } + }, + "packageManager": "yarn@4.4.0" }