Skip to content

Commit 0e9f3b9

Browse files
committed
test(angular): config changes
1 parent 33396fd commit 0e9f3b9

File tree

11 files changed

+28
-186
lines changed

11 files changed

+28
-186
lines changed

packages/angular/test/apps/ng19/.browserslistrc

Lines changed: 0 additions & 12 deletions
This file was deleted.

packages/angular/test/apps/ng19/.editorconfig

Lines changed: 0 additions & 13 deletions
This file was deleted.

packages/angular/test/apps/ng19/.eslintrc.json

Lines changed: 0 additions & 51 deletions
This file was deleted.

packages/angular/test/apps/ng19/.gitignore

Lines changed: 0 additions & 44 deletions
This file was deleted.
Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,13 @@
11
{
2-
"angularCompilerOptions": {
3-
"fullTemplateTypeCheck": true,
4-
"strictMetadataEmit" : true
5-
},
62
"extends": "../tsconfig.json",
7-
"include": [
8-
"src/**spec.ts",
9-
"../cypress/support/index.d.ts"
10-
],
113
"compilerOptions": {
12-
"outDir": "../out-tsc/app",
4+
"outDir": "../out-tsc/e2e",
135
"module": "commonjs",
146
"target": "es5",
15-
"types": [
16-
"cypress",
17-
"node"
18-
]
19-
}
7+
"types": ["cypress", "node"]
8+
},
9+
"include": [
10+
"../cypress/**/*.ts",
11+
"../cypress/support/**/*.ts"
12+
]
2013
}

packages/angular/test/apps/ng19/package-lock.json

Lines changed: 12 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/angular/test/apps/ng19/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"@typescript-eslint/eslint-plugin": "^6.0.0",
5454
"@typescript-eslint/parser": "^6.0.0",
5555
"concurrently": "^6.0.0",
56-
"cypress": "^13.2.0",
56+
"cypress": "^13.16.0",
5757
"eslint": "^8.57.0",
5858
"ts-loader": "^6.2.2",
5959
"ts-node": "^8.3.0",

packages/angular/test/apps/ng19/tsconfig.app.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
4-
"outDir": "./out-tsc/app"
4+
"outDir": "./out-tsc/app",
5+
"types": []
56
},
67
"files": [
78
"src/main.ts",
8-
"src/polyfills.ts",
9-
"src/zone-flags.ts"
9+
"src/polyfills.ts"
1010
],
1111
"include": [
1212
"src/**/*.d.ts"

packages/angular/test/apps/ng19/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"noImplicitReturns": true,
1111
"noFallthroughCasesInSwitch": true,
1212
"sourceMap": true,
13-
"declaration": true,
13+
"declaration": false,
1414
"experimentalDecorators": true,
1515
"moduleResolution": "node",
1616
"importHelpers": true,

packages/angular/test/apps/ng19/tsconfig.server.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./out-tsc/app-server",
5-
"target": "es2016",
5+
"target": "ES2016",
6+
"module": "commonjs",
67
"types": ["node"]
78
},
89
"files": [

0 commit comments

Comments
 (0)