-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathproject.json
More file actions
27 lines (27 loc) · 829 Bytes
/
project.json
File metadata and controls
27 lines (27 loc) · 829 Bytes
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
{
"name": "merchant-portal-vendor",
"$schema": "node_modules/nx/schemas/project-schema.json",
"sourceRoot": ".",
"projectType": "application",
"prefix": "mp",
"generators": {},
"targets": {
"test": {
"executor": "@nx/jest:jest",
"options": {
"jestConfig": "frontend/merchant-portal/jest.config.ts"
}
},
"lint": {
"executor": "@nx/eslint:lint",
"options": {
"eslintConfig": ".eslintrc.mp.json",
"lintFilePatterns": [
"Bundles/*/src/Spryker/Zed/*/Presentation/Components/**/*.ts",
"Bundles/*/src/Spryker/Zed/*/Presentation/Components/**/*.html"
],
"noEslintrc": true
}
}
}
}