Skip to content

Commit 716ef52

Browse files
committed
ci: fix build
1 parent 85f93ea commit 716ef52

File tree

5 files changed

+7
-380
lines changed

5 files changed

+7
-380
lines changed

napi/angular-compiler/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99
/e2e/compare/dist
1010
/benchmarks/typedb-web/dist
1111
/e2e/app/dist
12+
/tsconfig.tsbuildinfo

napi/angular-compiler/package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
"typesVersions": {
2626
"*": {
2727
"build-optimizer": [
28-
"./dist/angular-build-optimizer-plugin.d.mts"
28+
"./dist/angular-build-optimizer-plugin.d.ts"
2929
],
3030
"vite-plugin": [
31-
"./dist/index.d.mts"
31+
"./dist/index.d.ts"
3232
]
3333
}
3434
},
@@ -40,8 +40,8 @@
4040
},
4141
"exports": {
4242
".": {
43-
"types": "./dist/index.d.mts",
44-
"default": "./dist/index.mjs"
43+
"types": "./dist/index.d.ts",
44+
"default": "./dist/index.js"
4545
},
4646
"./api": {
4747
"types": "./index.d.ts",
@@ -54,7 +54,7 @@
5454
"build-test": "oxnode build.ts --esm --platform --features allocator,cross_file_elision && pnpm run build:ts",
5555
"build": "pnpm run build:native && pnpm run build:ts",
5656
"build:native": "pnpm run build-dev --release",
57-
"build:ts": "tsdown",
57+
"build:ts": "tsc -p tsconfig.json",
5858
"test": "vitest run --dir ./test",
5959
"test:e2e": "playwright test --config=e2e/playwright.config.ts",
6060
"preversion": "oxnode build.ts --platform --esm --features allocator && git add index.js index.d.ts",
@@ -71,7 +71,6 @@
7171
"@playwright/test": "^1.58.0",
7272
"@types/node": "catalog:",
7373
"oxfmt": "catalog:",
74-
"tsdown": "catalog:",
7574
"typescript": "catalog:",
7675
"vite": "catalog:",
7776
"vitest": "catalog:"

napi/angular-compiler/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"declaration": true,
1010
"declarationMap": true,
1111
"outDir": "./dist",
12-
"rootDir": ".",
12+
"rootDir": "./vite-plugin",
1313
"allowJs": true,
1414
"composite": true,
1515
"resolveJsonModule": true

napi/angular-compiler/tsdown.config.ts

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

0 commit comments

Comments
 (0)