Skip to content

Commit a7cf4e3

Browse files
committed
chore: migrate to ts project reference, new eslint config, and swc compiler
1 parent d337acf commit a7cf4e3

File tree

132 files changed

+1714
-443
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+1714
-443
lines changed

.github/workflows/smoke-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
1515
npm_config_registry: http://localhost:4873
1616
YARN_REGISTRY: http://localhost:4873
17+
NODE_OPTIONS: '--max-old-space-size=32768'
1718
timeout-minutes: 60
1819
strategy:
1920
matrix:

.gitignore

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
# See http://help.github.com/ignore-files/ for more about ignoring files.
22

33
# compiled output
4-
/dist
4+
dist
55
tmp
6-
/out-tsc
7-
/bin
6+
out-tsc
87

98
# dependencies
10-
/node_modules
11-
.pnpm-store
9+
node_modules
1210

1311
# IDEs and editors
1412
/.idea

bun.lockb

2.67 KB
Binary file not shown.

e2e/nx-flutter-e2e/tsconfig.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
"files": [],
44
"include": [],
55
"references": [
6+
{
7+
"path": "../../packages/common"
8+
},
9+
{
10+
"path": "../../packages/common-cli"
11+
},
612
{
713
"path": "./tsconfig.spec.json"
814
}

e2e/nx-ktor-e2e/tsconfig.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
"files": [],
44
"include": [],
55
"references": [
6+
{
7+
"path": "../../packages/common-jvm"
8+
},
9+
{
10+
"path": "../../packages/common-cli"
11+
},
612
{
713
"path": "./tsconfig.spec.json"
814
}

e2e/nx-melos-e2e/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
"files": [],
44
"include": [],
55
"references": [
6+
{
7+
"path": "../../packages/common"
8+
},
69
{
710
"path": "./tsconfig.spec.json"
811
}

e2e/nx-micronaut-e2e/tsconfig.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
"files": [],
44
"include": [],
55
"references": [
6+
{
7+
"path": "../../packages/common-jvm"
8+
},
9+
{
10+
"path": "../../packages/common-cli"
11+
},
612
{
713
"path": "./tsconfig.spec.json"
814
}

e2e/nx-quarkus-e2e/tsconfig.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
"files": [],
44
"include": [],
55
"references": [
6+
{
7+
"path": "../../packages/common-jvm"
8+
},
9+
{
10+
"path": "../../packages/common-cli"
11+
},
612
{
713
"path": "./tsconfig.spec.json"
814
}

e2e/nx-spring-boot-e2e/tsconfig.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
"files": [],
44
"include": [],
55
"references": [
6+
{
7+
"path": "../../packages/common-jvm"
8+
},
9+
{
10+
"path": "../../packages/common-cli"
11+
},
612
{
713
"path": "./tsconfig.spec.json"
814
}

e2e/smoke/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
"files": [],
44
"include": [],
55
"references": [
6+
{
7+
"path": "../../packages/common"
8+
},
69
{
710
"path": "./tsconfig.spec.json"
811
}

0 commit comments

Comments
 (0)