fix: use node-modules linker (#87)

This commit is contained in:
2025-07-14 02:57:01 +03:00
committed by GitHub
parent 1913e9a043
commit 068bcad08b
7 changed files with 28 additions and 1 deletions

5
.gitignore vendored
View File

@@ -28,3 +28,8 @@ coverage
*.sw?
*.tsbuildinfo
# Yarn
.yarn/
yarn.lock
.pnp.*

1
.yarnrc.yml Normal file
View File

@@ -0,0 +1 @@
nodeLinker: node-modules

View File

@@ -13,6 +13,18 @@ This Vue 3 app generates templates for sysvinit services.
7. ???
8. Profit!
## Development
Install dependencies and run the dev server with Yarn:
```bash
yarn install
yarn dev
# build the app
yarn build
```
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

View File

@@ -27,6 +27,7 @@
"@vue/eslint-config-prettier": "^10",
"@vue/eslint-config-typescript": "^14",
"@vue/tsconfig": "^0.7.0",
"@vue/typescript-plugin": "^3.0.1",
"eslint": "^9",
"eslint-plugin-vue": "^10",
"npm-run-all2": "^8.0.0",
@@ -35,6 +36,7 @@
"typescript": "~5.8.0",
"vite": "^6",
"vite-plugin-vue-devtools": "^7.0.18",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^3.0.0"
}
}

View File

@@ -18,5 +18,8 @@
"./src/*"
]
}
},
"vueCompilerOptions": {
"plugins": ["@vue/typescript-plugin"]
}
}

View File

@@ -10,5 +10,8 @@
],
"exclude": [
"node_modules"
]
],
"compilerOptions": {
"lib": ["es2023"]
}
}

View File

@@ -11,6 +11,7 @@
"composite": true,
"noEmit": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"lib": ["es2023"],
"module": "ESNext",
"moduleResolution": "Bundler",
"types": [