返回 AiToEarn
project.json
1 {
2 "name": "channel-db",
3 "$schema": "../../node_modules/nx/schemas/project-schema.json",
4 "sourceRoot": "libs/channel-db/src",
5 "projectType": "library",
6 "release": {
7 "version": {
8 "manifestRootsToUpdate": ["dist/{projectRoot}"],
9 "currentVersionResolver": "git-tag",
10 "fallbackCurrentVersionResolver": "disk"
11 }
12 },
13 "tags": [],
14 "targets": {
15 "build": {
16 "executor": "@nx/js:tsc",
17 "outputs": ["{options.outputPath}"],
18 "options": {
19 "outputPath": "dist/libs/channel-db",
20 "tsConfig": "libs/channel-db/tsconfig.lib.json",
21 "packageJson": "libs/channel-db/package.json",
22 "main": "libs/channel-db/src/index.ts",
23 "assets": ["libs/channel-db/*.md"]
24 }
25 },
26 "lint": {
27 "executor": "@nx/eslint:lint",
28 "outputs": [
29 "{options.outputFile}"
30 ],
31 "options": {
32 "fix": true
33 }
34 }
35 }
36 }
37
37 lines JSON