Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(server): Add missing type: module #1147

Merged
merged 2 commits into from
Nov 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@
"main": "dist/index.js",
"module": "dist/authorization.esm.js",
"typings": "dist/index.d.ts",
"type": "module",
"scripts": {
"_build": "tsdx build --transpileOnly --tsconfig tsconfig.prod.json",
"build:server": "yarn _build --format cjs --target node --entry src/server.ts",
"build:swr-queue-worker": "yarn _build --format cjs --target node --entry src/swr-queue-worker.ts",
"codegen": "graphql-codegen --config codegen.yml",
"deploy:image": "NODE_OPTIONS='--experimental-specifier-resolution=node' ts-node-esm scripts/deploy.ts",
"deploy:image": "ts-node --experimental-specifier-resolution=node scripts/deploy",
"prestart": "lerna run build",
"start": "tsdx watch --transpileOnly --format cjs --target node --entry src/server.ts --tsconfig tsconfig.prod.json --onSuccess \"node dist\"",
"start:swr-queue-worker": "tsdx watch --transpileOnly --format cjs --target node --entry src/swr-queue-worker.ts --tsconfig tsconfig.prod.json --onSuccess \"node dist\""
Expand Down
Loading