mirror of
https://github.com/bitwarden/browser
synced 2026-02-09 21:20:27 +00:00
28 lines
706 B
JSON
28 lines
706 B
JSON
{
|
|
"$schema": "./node_modules/nx/schemas/nx-schema.json",
|
|
"cacheDirectory": ".nx/cache",
|
|
"defaultBase": "main",
|
|
"namedInputs": {
|
|
"default": ["{projectRoot}/**/*", "sharedGlobals"],
|
|
"production": ["default", "!{projectRoot}/**/*.spec.ts", "!{projectRoot}/tsconfig.spec.json"],
|
|
"sharedGlobals": ["{workspaceRoot}/tsconfig.base.json", "{workspaceRoot}/package.json"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"plugin": "@nx/js",
|
|
"options": {
|
|
"compiler": "tsc"
|
|
}
|
|
}
|
|
],
|
|
"parallel": 4,
|
|
"targetDefaults": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["production", "^production"],
|
|
"outputs": ["{options.outputPath}"],
|
|
"cache": true
|
|
}
|
|
}
|
|
}
|