mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
34 lines
926 B
JSON
34 lines
926 B
JSON
{
|
|
"name": "state-internal",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "libs/state-internal/src",
|
|
"projectType": "library",
|
|
"tags": [],
|
|
"targets": {
|
|
"build": {
|
|
"executor": "@nx/js:tsc",
|
|
"outputs": ["{options.outputPath}"],
|
|
"options": {
|
|
"outputPath": "dist/libs/state-internal",
|
|
"main": "libs/state-internal/src/index.ts",
|
|
"tsConfig": "libs/state-internal/tsconfig.lib.json",
|
|
"assets": ["libs/state-internal/*.md"]
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nx/eslint:lint",
|
|
"outputs": ["{options.outputFile}"],
|
|
"options": {
|
|
"lintFilePatterns": ["libs/state-internal/**/*.ts"]
|
|
}
|
|
},
|
|
"test": {
|
|
"executor": "@nx/jest:jest",
|
|
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
|
|
"options": {
|
|
"jestConfig": "libs/state-internal/jest.config.js"
|
|
}
|
|
}
|
|
}
|
|
}
|