@nx/playwright 20.3.0-canary.20241214-4cd640a → 20.3.0-canary.20241218-fb40366
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/playwright",
|
|
3
|
-
"version": "20.3.0-canary.
|
|
3
|
+
"version": "20.3.0-canary.20241218-fb40366",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"homepage": "https://nx.dev",
|
|
6
6
|
"private": false,
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
38
|
-
"@nx/devkit": "20.3.0-canary.
|
|
39
|
-
"@nx/eslint": "20.3.0-canary.
|
|
40
|
-
"@nx/webpack": "20.3.0-canary.
|
|
41
|
-
"@nx/vite": "20.3.0-canary.
|
|
42
|
-
"@nx/js": "20.3.0-canary.
|
|
38
|
+
"@nx/devkit": "20.3.0-canary.20241218-fb40366",
|
|
39
|
+
"@nx/eslint": "20.3.0-canary.20241218-fb40366",
|
|
40
|
+
"@nx/webpack": "20.3.0-canary.20241218-fb40366",
|
|
41
|
+
"@nx/vite": "20.3.0-canary.20241218-fb40366",
|
|
42
|
+
"@nx/js": "20.3.0-canary.20241218-fb40366",
|
|
43
43
|
"tslib": "^2.3.0",
|
|
44
44
|
"minimatch": "9.0.3"
|
|
45
45
|
},
|
|
@@ -56,17 +56,12 @@ async function configurationGeneratorInternal(tree, rawOptions) {
|
|
|
56
56
|
],
|
|
57
57
|
};
|
|
58
58
|
if (isTsSolutionSetup) {
|
|
59
|
+
tsconfig.exclude = ['out-tsc', 'test-output'];
|
|
59
60
|
// skip eslint from typechecking since it extends from root file that is outside rootDir
|
|
60
61
|
if (options.linter === 'eslint') {
|
|
61
|
-
tsconfig.exclude
|
|
62
|
-
'dist',
|
|
63
|
-
'eslint.config.js',
|
|
64
|
-
'eslint.config.mjs',
|
|
65
|
-
'eslint.config.cjs',
|
|
66
|
-
];
|
|
62
|
+
tsconfig.exclude.push('eslint.config.js', 'eslint.config.mjs', 'eslint.config.cjs');
|
|
67
63
|
}
|
|
68
|
-
tsconfig.compilerOptions.outDir = '
|
|
69
|
-
tsconfig.compilerOptions.tsBuildInfoFile = 'dist/tsconfig.tsbuildinfo';
|
|
64
|
+
tsconfig.compilerOptions.outDir = 'out-tsc/playwright';
|
|
70
65
|
if (!options.rootProject) {
|
|
71
66
|
(0, devkit_1.updateJson)(tree, 'tsconfig.json', (json) => {
|
|
72
67
|
// add the project tsconfig to the workspace root tsconfig.json references
|