vega-frontend-monorepo/libs/wallet-react/project.json
Matthew Russell 28b4593a1d
refactor(trading,governance,wallet): wallet rewrite (#5815)
Co-authored-by: bwallacee <ben@vega.xyz>
2024-03-01 14:25:56 +00:00

45 lines
1.3 KiB
JSON

{
"name": "wallet-react",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/wallet-react/src",
"projectType": "library",
"tags": [],
"targets": {
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/wallet-react/**/*.{ts,tsx,js,jsx}"]
}
},
"build": {
"executor": "@nx/rollup:rollup",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/wallet-react",
"tsConfig": "libs/wallet-react/tsconfig.lib.json",
"project": "libs/wallet-react/package.json",
"entryFile": "libs/wallet-react/src/index.ts",
"additionalEntryPoints": ["libs/wallet-react/src/testing.ts"],
"external": ["react", "react-dom", "react/jsx-runtime"],
"rollupConfig": "@nx/react/plugins/bundle-rollup",
"compiler": "babel",
"assets": [
{
"glob": "libs/wallet-react/README.md",
"input": ".",
"output": "."
}
]
}
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "libs/wallet-react/jest.config.ts"
}
}
}
}