Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

52
node_modules/@nx/eslint-plugin/project.json generated vendored Normal file
View File

@@ -0,0 +1,52 @@
{
"name": "eslint-plugin",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/eslint-plugin",
"projectType": "library",
"targets": {
"build": {
"outputs": ["{workspaceRoot}/dist/packages/eslint-plugin/README.md"],
"command": "node ./scripts/copy-readme.js eslint-plugin"
},
"legacy-post-build": {
"executor": "@nx/workspace-plugin:legacy-post-build",
"options": {
"tsConfig": "./tsconfig.lib.json",
"assets": [
{
"input": "packages/eslint-plugin",
"glob": "**/files/**",
"output": "/"
},
{
"input": "packages/eslint-plugin",
"glob": "**/files/**/.gitkeep",
"output": "/"
},
{
"input": "packages/eslint-plugin",
"glob": "**/*.json",
"ignore": ["**/tsconfig*.json", "project.json", ".eslintrc.json"],
"output": "/"
},
{
"input": "packages/eslint-plugin",
"glob": "**/*.js",
"ignore": ["**/jest.config.js"],
"output": "/"
},
{
"input": "packages/eslint-plugin",
"glob": "**/*.d.ts",
"output": "/"
},
{
"input": "",
"glob": "LICENSE",
"output": "/"
}
]
}
}
}
}