-
Notifications
You must be signed in to change notification settings - Fork 0
/
workspace.json
66 lines (66 loc) · 2.21 KB
/
workspace.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"version": 2,
"projects": {
"app": "apps/app",
"auth": "libs/auth",
"domain": "libs/domain",
"infrastructure": "libs/infrastructure",
"spotify-express-passport-auth-app": {
"root": "apps/spotify-express-passport-auth-app",
"sourceRoot": "apps/spotify-express-passport-auth-app/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:build",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/apps/spotify-express-passport-auth-app",
"main": "apps/spotify-express-passport-auth-app/src/main.ts",
"tsConfig": "apps/spotify-express-passport-auth-app/tsconfig.app.json",
"assets": ["apps/spotify-express-passport-auth-app/src/assets"],
"generatePackageJson": true
},
"configurations": {
"production": {
"optimization": true,
"extractLicenses": true,
"inspect": false,
"fileReplacements": [
{
"replace": "apps/spotify-express-passport-auth-app/src/environments/environment.ts",
"with": "apps/spotify-express-passport-auth-app/src/environments/environment.prod.ts"
}
]
}
}
},
"serve": {
"executor": "@nrwl/node:execute",
"options": {
"buildTarget": "spotify-express-passport-auth-app:build"
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"apps/spotify-express-passport-auth-app/**/*.ts"
]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/apps/spotify-express-passport-auth-app"],
"options": {
"jestConfig": "apps/spotify-express-passport-auth-app/jest.config.js",
"passWithNoTests": true
}
}
},
"tags": ["spotify", "passport", "auth"]
},
"users-sequelize": "libs/users-sequelize",
"users-typeorm": "libs/users-typeorm"
}
}