-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.json
36 lines (36 loc) · 890 Bytes
/
project.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
{
"name": "@yberion/image-utils",
"$schema": "node_modules/nx/schemas/project-schema.json",
"sourceRoot": "src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nx/esbuild:esbuild",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist",
"main": "./src/index.ts",
"tsConfig": "./tsconfig.lib.json",
"assets": [],
"format": ["cjs", "esm"],
"minify": true
}
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["./**/*.ts", "./package.json"]
}
},
"test": {
"executor": "@nx/vite:test",
"outputs": ["{projectRoot}/coverage"],
"options": {
"passWithNoTests": true,
"reportsDirectory": "coverage"
}
}
},
"tags": []
}