forked from llm-tools/embedJs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnx.json
32 lines (32 loc) · 1.34 KB
/
nx.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
{
"pluginsConfig": { "@nx/js": { "analyzeSourceFiles": true } },
"extends": "nx/presets/npm.json",
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"defaultBase": "main",
"nxCloudId": "67e3913e31e3c5e9b6f1556f",
"plugins": [{ "plugin": "@nx/eslint/plugin", "options": { "targetName": "lint" } }],
"targetDefaults": {
"@nx/js:tsc": { "cache": true, "dependsOn": ["^build"], "inputs": ["default", "^default"] },
"nx-release-publish": { "options": { "packageRoot": "dist/esm/{projectName}" } },
"@nx/esbuild:esbuild": { "cache": true, "dependsOn": ["^build"], "inputs": ["default", "^default"] }
},
"release": {
"projects": ["*", "!examples-*"],
"changelog": {
"projectChangelogs": { "renderOptions": { "authors": false, "commitReferences": true } },
"workspaceChangelog": {
"file": false,
"createRelease": "github",
"renderOptions": { "authors": false, "commitReferences": true }
}
},
"version": {
"preVersionCommand": "npm run build:pipeline",
"generatorOptions": {
"currentVersionResolver": "registry",
"fallbackCurrentVersionResolver": "github",
"packageRoot": "dist/esm/{projectName}"
}
}
}
}