nx/packages/rust/project.json
BAK BYEONG JUN 18932f4a5f
Some checks failed
CI / checks (push) Has been cancelled
init
2025-05-06 13:52:36 +00:00

59 lines
1.5 KiB
JSON

{
"name": "rust",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/rust/src",
"projectType": "library",
"tags": [],
"targets": {
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/packages/rust"],
"options": {
"jestConfig": "packages/rust/jest.config.ts"
}
},
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/rust",
"tsConfig": "packages/rust/tsconfig.lib.json",
"packageJson": "packages/rust/package.json",
"main": "packages/rust/src/index.ts",
"assets": [
"packages/rust/*.md",
{
"input": "./packages/rust/src",
"glob": "**/!(*.ts)",
"output": "./src"
},
{
"input": "./packages/rust/src",
"glob": "**/*.d.ts",
"output": "./src"
},
{
"input": "./packages/rust",
"glob": "generators.json",
"output": "."
},
{
"input": "./packages/rust",
"glob": "executors.json",
"output": "."
},
{
"input": "./packages/rust",
"glob": "migrations.json",
"output": "."
}
]
}
}
}
}