Files
sui-data-sync/project.json
2024-05-23 17:14:27 +08:00

30 lines
699 B
JSON

{
"name": "sui-data-sync",
"$schema": "node_modules/nx/schemas/project-schema.json",
"sourceRoot": "src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/sui-data-sync",
"main": "./src/index.ts",
"tsConfig": "./tsconfig.lib.json",
"assets": ["*.md"]
}
},
"lint": {
"command": "eslint ./src ./package.json"
},
"test": {
"executor": "@nx/vite:test",
"outputs": ["{options.reportsDirectory}"],
"options": {
"reportsDirectory": "coverage/sui-data-sync"
}
}
}
}