vega-frontend-monorepo/libs/wallet/project.json

44 lines
1.1 KiB
JSON
Raw Normal View History

2022-02-24 03:19:18 +00:00
{
"root": "libs/wallet",
"sourceRoot": "libs/wallet/src",
2022-02-24 03:19:18 +00:00
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nrwl/web:rollup",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/wallet",
"tsConfig": "libs/wallet/tsconfig.lib.json",
"project": "libs/wallet/package.json",
"entryFile": "libs/wallet/src/index.ts",
"external": ["react/jsx-runtime"],
2022-02-24 03:19:18 +00:00
"rollupConfig": "@nrwl/react/plugins/bundle-rollup",
"compiler": "babel",
"assets": [
{
"glob": "libs/wallet/README.md",
2022-02-24 03:19:18 +00:00
"input": ".",
"output": "."
}
]
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/wallet/**/*.{ts,tsx,js,jsx}"]
2022-02-24 03:19:18 +00:00
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/libs/wallet"],
2022-02-24 03:19:18 +00:00
"options": {
"jestConfig": "libs/wallet/jest.config.js",
2022-02-24 03:19:18 +00:00
"passWithNoTests": true
}
}
}
}