-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.json
More file actions
54 lines (54 loc) · 1.37 KB
/
Copy pathproject.json
File metadata and controls
54 lines (54 loc) · 1.37 KB
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
{
"name": "aws-cdk-secure-constructs",
"$schema": "node_modules/nx/schemas/project-schema.json",
"sourceRoot": "src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "lib",
"main": "src/index.ts",
"tsConfig": "tsconfig.json",
"assets": ["src/**/*.md"]
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["src/**/*.ts", "test/**/*.ts", "examples/**/*.ts"]
}
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage"],
"options": {
"jestConfig": "jest.config.js",
"passWithNoTests": true
},
"configurations": {
"watch": {
"watch": true
},
"coverage": {
"coverage": true
}
}
},
"format": {
"executor": "@nx/prettier:format",
"options": {
"files": ["src/**/*.ts", "test/**/*.ts", "examples/**/*.ts", "**/*.json", "**/*.md"]
}
},
"format:check": {
"executor": "@nx/prettier:check",
"options": {
"files": ["src/**/*.ts", "test/**/*.ts", "examples/**/*.ts", "**/*.json", "**/*.md"]
}
}
},
"tags": ["scope:aws-cdk", "type:library"]
}