2022-04-08 17:49:45 +00:00
|
|
|
{
|
2023-07-04 11:01:25 +00:00
|
|
|
"name": "candles-chart",
|
2022-08-31 04:35:46 +00:00
|
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
2022-04-25 17:34:07 +00:00
|
|
|
"sourceRoot": "libs/candles-chart/src",
|
2022-04-08 17:49:45 +00:00
|
|
|
"projectType": "library",
|
|
|
|
"tags": [],
|
|
|
|
"targets": {
|
|
|
|
"build": {
|
2023-07-04 11:01:25 +00:00
|
|
|
"executor": "@nx/rollup:rollup",
|
2022-08-31 13:23:01 +00:00
|
|
|
"outputs": ["{options.outputPath}"],
|
2022-04-08 17:49:45 +00:00
|
|
|
"options": {
|
2022-04-25 17:34:07 +00:00
|
|
|
"outputPath": "dist/libs/candles-chart",
|
|
|
|
"tsConfig": "libs/candles-chart/tsconfig.lib.json",
|
|
|
|
"project": "libs/candles-chart/package.json",
|
|
|
|
"entryFile": "libs/candles-chart/src/index.ts",
|
2022-08-31 13:23:01 +00:00
|
|
|
"external": ["react/jsx-runtime"],
|
2023-07-04 11:01:25 +00:00
|
|
|
"rollupConfig": "@nx/react/plugins/bundle-rollup",
|
2022-04-08 17:49:45 +00:00
|
|
|
"compiler": "babel",
|
|
|
|
"assets": [
|
|
|
|
{
|
2022-04-25 17:34:07 +00:00
|
|
|
"glob": "libs/candles-chart/README.md",
|
2022-04-08 17:49:45 +00:00
|
|
|
"input": ".",
|
|
|
|
"output": "."
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint": {
|
2023-07-04 11:01:25 +00:00
|
|
|
"executor": "@nx/linter:eslint",
|
2022-08-31 13:23:01 +00:00
|
|
|
"outputs": ["{options.outputFile}"],
|
2022-04-08 17:49:45 +00:00
|
|
|
"options": {
|
2022-08-31 13:23:01 +00:00
|
|
|
"lintFilePatterns": ["libs/candles-chart/**/*.{ts,tsx,js,jsx}"]
|
2022-04-08 17:49:45 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"test": {
|
2023-07-04 11:01:25 +00:00
|
|
|
"executor": "@nx/jest:jest",
|
|
|
|
"outputs": ["{workspaceRoot}/coverage/libs/candles-chart"],
|
2022-04-08 17:49:45 +00:00
|
|
|
"options": {
|
2022-08-31 04:35:46 +00:00
|
|
|
"jestConfig": "libs/candles-chart/jest.config.ts",
|
2022-04-08 17:49:45 +00:00
|
|
|
"passWithNoTests": true
|
2023-07-04 11:01:25 +00:00
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"ci": {
|
|
|
|
"ci": true,
|
|
|
|
"codeCoverage": true
|
|
|
|
}
|
2022-04-08 17:49:45 +00:00
|
|
|
}
|
2022-10-25 07:41:16 +00:00
|
|
|
},
|
|
|
|
"build-spec": {
|
2023-07-04 11:01:25 +00:00
|
|
|
"executor": "nx:run-commands",
|
2022-10-25 07:41:16 +00:00
|
|
|
"outputs": [],
|
|
|
|
"options": {
|
|
|
|
"command": "yarn tsc --project ./libs/candles-chart/tsconfig.spec.json"
|
|
|
|
}
|
2022-04-08 17:49:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|