1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-06 19:53:59 +00:00
Files
browser/libs/device-type/project.json
2025-08-09 12:03:14 -04:00

34 lines
902 B
JSON

{
"name": "device-type",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/device-type/src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/device-type",
"main": "libs/device-type/src/index.ts",
"tsConfig": "libs/device-type/tsconfig.lib.json",
"assets": ["libs/device-type/*.md"]
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/device-type/**/*.ts"]
}
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "libs/device-type/jest.config.js"
}
}
}
}