mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-02-20 00:33:07 +01:00
55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"extends": "nx/presets/npm.json",
|
|
"tasksRunnerOptions": {
|
|
"default": {
|
|
"runner": "@nrwl/nx-cloud",
|
|
"options": {
|
|
"cacheableOperations": [
|
|
"lint",
|
|
"test:unit",
|
|
"type-check",
|
|
"lint:js",
|
|
"lint:styles",
|
|
"build:lib"
|
|
],
|
|
"accessToken": "NmE2NmFlYTUtN2JhZi00ZmQ3LWEyYzMtYWRkNzc3MTg0YmUyfHJlYWQ=",
|
|
"parallel": 5
|
|
}
|
|
}
|
|
},
|
|
"targetDefaults": {
|
|
"build:lib": {
|
|
"dependsOn": ["^build:lib"],
|
|
"outputs": ["./lib"]
|
|
},
|
|
"type-check": {
|
|
"dependsOn": ["^build:lib"],
|
|
"outputs": []
|
|
},
|
|
"test:unit": {
|
|
"dependsOn": ["^build:lib"],
|
|
"outputs": []
|
|
},
|
|
"lint:js": {
|
|
"inputs": ["{projectRoot}/**/*.js", "{projectRoot}/**/*.ts", "{projectRoot}/**/*.tsx"]
|
|
},
|
|
"lint:styles": {
|
|
"inputs": ["{projectRoot}/**/*.tsx"]
|
|
}
|
|
},
|
|
"implicitDependencies": {
|
|
"tsconfig.json": "*",
|
|
"tsconfig.aliases.json": "*",
|
|
"tsconfig.lib.json": "*",
|
|
"jest.config.base.js": "*",
|
|
"jest.config.native.js": "*",
|
|
".eslintrc.js": "*",
|
|
"package.json": "*",
|
|
"nx.json": "*",
|
|
"!yarn.lock": "*"
|
|
},
|
|
"affected": {
|
|
"defaultBase": "origin/develop"
|
|
}
|
|
}
|