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

25
node_modules/@nx/web/generators.json generated vendored Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "nx/web",
"version": "0.1",
"extends": ["@nx/workspace"],
"generators": {
"init": {
"factory": "./src/generators/init/init#webInitGenerator",
"schema": "./src/generators/init/schema.json",
"description": "Add `@nrwl/web` to a project.",
"hidden": true
},
"application": {
"factory": "./src/generators/application/application#applicationGeneratorInternal",
"schema": "./src/generators/application/schema.json",
"aliases": ["app"],
"x-type": "application",
"description": "Create an web application."
},
"static-config": {
"factory": "./src/generators/static-serve/static-serve-configuration",
"schema": "./src/generators/static-serve/schema.json",
"description": "Add a new static-serve target to a project."
}
}
}