返回 AiToEarn
project.json
1 {
2 "name": "aitoearn-server-shared",
3 "$schema": "../../node_modules/nx/schemas/project-schema.json",
4 "sourceRoot": "libs/aitoearn-server-shared/src",
5 "projectType": "library",
6 "tags": [],
7 "targets": {
8 "build": {
9 "executor": "@nx/js:tsc",
10 "outputs": ["{options.outputPath}"],
11 "options": {
12 "outputPath": "dist/libs/aitoearn-server-shared",
13 "tsConfig": "libs/aitoearn-server-shared/tsconfig.lib.json",
14 "packageJson": "libs/aitoearn-server-shared/package.json",
15 "main": "libs/aitoearn-server-shared/src/index.ts",
16 "assets": ["libs/aitoearn-server-shared/*.md"]
17 }
18 },
19 "lint": {
20 "executor": "@nx/eslint:lint",
21 "outputs": ["{options.outputFile}"],
22 "options": {
23 "fix": true
24 }
25 }
26 }
27 }
28
28 lines JSON