Skip to content

Commit 6234d00

Browse files
author
John Doe
committed
merge
1 parent 9fd1985 commit 6234d00

6 files changed

Lines changed: 16 additions & 2 deletions

File tree

packages/nx-plugin/project.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
}
4242
},
4343
"unit-test": {},
44+
"build": {},
45+
"lint": {},
46+
"unit-test": {},
4447
"int-test": {
4548
"cache": true,
4649
"outputs": ["{workspaceRoot}/coverage/{projectName}/int-tests/lcov.info"],

testing/test-nx-utils/tsconfig.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"noPropertyAccessFromIndexSignature": true,
99
"noImplicitReturns": true,
1010
"noFallthroughCasesInSwitch": true,
11-
"types": ["vitest"]
11+
"types": ["vitest"],
12+
"rootDir": ".."
1213
},
1314
"files": [],
1415
"include": [],
@@ -18,6 +19,9 @@
1819
},
1920
{
2021
"path": "./tsconfig.test.json"
22+
},
23+
{
24+
"path": "../test-utils/tsconfig.lib.json"
2125
}
2226
]
2327
}

testing/test-nx-utils/tsconfig.lib.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "../dist/out-tsc",
5+
"rootDir": "../../",
56
"declaration": true,
67
"types": ["node"]
78
},

testing/test-setup/tsconfig.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"noImplicitOverride": true,
88
"noPropertyAccessFromIndexSignature": true,
99
"noImplicitReturns": true,
10-
"noFallthroughCasesInSwitch": true
10+
"noFallthroughCasesInSwitch": true,
11+
"rootDir": ".."
1112
},
1213
"files": [],
1314
"include": [],
@@ -17,6 +18,9 @@
1718
},
1819
{
1920
"path": "./tsconfig.test.json"
21+
},
22+
{
23+
"path": "../test-utils/tsconfig.lib.json"
2024
}
2125
]
2226
}

testing/test-setup/tsconfig.lib.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "../dist/out-tsc",
5+
"rootDir": "../../",
56
"declaration": true,
67
"types": ["node"]
78
},

testing/test-utils/tsconfig.lib.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"compilerOptions": {
44
"outDir": "../dist/out-tsc",
55
"declaration": true,
6+
"composite": true,
67
"types": ["node"]
78
},
89
"include": ["src/**/*.ts"],

0 commit comments

Comments
 (0)