-
Notifications
You must be signed in to change notification settings - Fork 558
/
angular.json
51 lines (51 loc) · 1 KB
/
angular.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"$schema": "./apps/gauzy/node_modules/@angular/cli/lib/config/schema.json",
"cli": {
"warnings": {
"versionMismatch": false
},
"packageManager": "yarn",
"analytics": false,
"schematicCollections": ["@nstudio/xplat"]
},
"version": 1,
"newProjectRoot": "",
"projects": {},
"schematics": {
"@nx/angular": {
"application": {
"linter": "eslint"
},
"library": {
"linter": "eslint"
},
"storybook-configuration": {
"linter": "eslint"
}
},
"@nx/angular:application": {
"style": "scss",
"linter": "eslint",
"unitTestRunner": "jest",
"e2eTestRunner": "cypress"
},
"@nx/angular:component": {
"prefix": "ngx",
"style": "scss"
},
"@nx/angular:directive": {
"prefix": "ngx"
},
"@nx/angular:library": {
"style": "scss",
"linter": "eslint",
"unitTestRunner": "jest"
},
"@angular-eslint/schematics:application": {
"setParserOptionsProject": true
},
"@angular-eslint/schematics:library": {
"setParserOptionsProject": true
}
}
}