mirror of
https://github.com/placeholder-soft/sui-data-sync.git
synced 2026-01-12 22:30:28 +08:00
30 lines
699 B
JSON
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"
|
|
}
|
|
}
|
|
}
|
|
}
|