aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/schema.json
diff options
context:
space:
mode:
authorNevena Bojovic <nenabojov@gmail.com>2022-03-01 20:05:50 +0100
committerNevena Bojovic <nenabojov@gmail.com>2022-03-01 20:05:50 +0100
commit291803c31f829fe0d32bb3207bc11def95a7408c (patch)
treec7d43107d79291b19d8c9eceefbe91c9f9a52acf /sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/schema.json
parent1fa69862057db4db53cfda5be9c24b4228ef63f7 (diff)
Urađena test aplikacija. Povezan front i back.
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/schema.json')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/schema.json113
1 files changed, 113 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/schema.json b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/schema.json
new file mode 100644
index 00000000..88a3caa3
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/application/schema.json
@@ -0,0 +1,113 @@
+{
+ "$schema": "http://json-schema.org/draft-07/schema",
+ "$id": "SchematicsAngularApp",
+ "title": "Angular Application Options Schema",
+ "type": "object",
+ "description": "Generates a new basic app definition in the \"projects\" subfolder of the workspace.",
+ "additionalProperties": false,
+ "properties": {
+ "projectRoot": {
+ "description": "The root directory of the new app.",
+ "type": "string",
+ "visible": false
+ },
+ "name": {
+ "description": "The name of the new app.",
+ "type": "string",
+ "pattern": "^(?:@[a-zA-Z0-9-*~][a-zA-Z0-9-*._~]*/)?[a-zA-Z0-9-~][a-zA-Z0-9-._~]*$",
+ "$default": {
+ "$source": "argv",
+ "index": 0
+ },
+ "x-prompt": "What name would you like to use for the application?"
+ },
+ "inlineStyle": {
+ "description": "Include styles inline in the root component.ts file. Only CSS styles can be included inline. Default is false, meaning that an external styles file is created and referenced in the root component.ts file.",
+ "type": "boolean",
+ "alias": "s",
+ "x-user-analytics": 9
+ },
+ "inlineTemplate": {
+ "description": "Include template inline in the root component.ts file. Default is false, meaning that an external template file is created and referenced in the root component.ts file. ",
+ "type": "boolean",
+ "alias": "t",
+ "x-user-analytics": 10
+ },
+ "viewEncapsulation": {
+ "description": "The view encapsulation strategy to use in the new application.",
+ "enum": ["Emulated", "None", "ShadowDom"],
+ "type": "string",
+ "x-user-analytics": 11
+ },
+ "routing": {
+ "type": "boolean",
+ "description": "Create a routing NgModule.",
+ "default": false,
+ "x-prompt": "Would you like to add Angular routing?",
+ "x-user-analytics": 17
+ },
+ "prefix": {
+ "type": "string",
+ "format": "html-selector",
+ "description": "A prefix to apply to generated selectors.",
+ "default": "app",
+ "alias": "p"
+ },
+ "style": {
+ "description": "The file extension or preprocessor to use for style files.",
+ "type": "string",
+ "default": "css",
+ "enum": ["css", "scss", "sass", "less"],
+ "x-prompt": {
+ "message": "Which stylesheet format would you like to use?",
+ "type": "list",
+ "items": [
+ { "value": "css", "label": "CSS" },
+ {
+ "value": "scss",
+ "label": "SCSS [ https://sass-lang.com/documentation/syntax#scss ]"
+ },
+ {
+ "value": "sass",
+ "label": "Sass [ https://sass-lang.com/documentation/syntax#the-indented-syntax ]"
+ },
+ {
+ "value": "less",
+ "label": "Less [ http://lesscss.org ]"
+ }
+ ]
+ },
+ "x-user-analytics": 5
+ },
+ "skipTests": {
+ "description": "Do not create \"spec.ts\" test files for the application.",
+ "type": "boolean",
+ "default": false,
+ "alias": "S",
+ "x-user-analytics": 12
+ },
+ "skipPackageJson": {
+ "type": "boolean",
+ "default": false,
+ "description": "Do not add dependencies to the \"package.json\" file."
+ },
+ "minimal": {
+ "description": "Create a bare-bones project without any testing frameworks. (Use for learning purposes only.)",
+ "type": "boolean",
+ "default": false,
+ "x-user-analytics": 14
+ },
+ "skipInstall": {
+ "description": "Skip installing dependency packages.",
+ "type": "boolean",
+ "default": false
+ },
+ "strict": {
+ "description": "Creates an application with stricter bundle budgets settings.",
+ "type": "boolean",
+ "default": true,
+ "x-user-analytics": 7
+ }
+ },
+ "required": ["name"]
+}