{
"name": "network-info",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/network-info/src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/rollup:rollup",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/network-info",
"tsConfig": "libs/network-info/tsconfig.lib.json",
"project": "libs/network-info/package.json",
"entryFile": "libs/network-info/src/index.ts",
"external": ["react/jsx-runtime"],
"rollupConfig": "@nx/react/plugins/bundle-rollup",
"compiler": "babel",
"assets": [
"glob": "libs/network-info/README.md",
"input": ".",
"output": "."
}
]
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"],
"lintFilePatterns": ["libs/network-info/**/*.{ts,tsx,js,jsx}"]
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/libs/network-info"],
"jestConfig": "libs/network-info/jest.config.ts",
"passWithNoTests": true
"configurations": {
"ci": {
"ci": true,
"codeCoverage": true
"build-spec": {
"executor": "nx:run-commands",
"outputs": [],
"command": "yarn tsc --project ./libs/network-info/tsconfig.spec.json"