Files
trezor-suite/nx.json
2022-08-26 10:51:55 +02:00

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"
}
}