Skip to content

Commit

Permalink
fix: fixed the type export
Browse files Browse the repository at this point in the history
  • Loading branch information
meza committed Apr 26, 2024
1 parent db2e5ce commit 774f9ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"build": "run-s build:cjs build:mjs",
"build:cjs": "tsc -p ./tsconfig.cjs.build.json && convert-extension cjs ./dist/cjs",
"build:mjs": "tsc -p tsconfig.build.json",
"build:types": "tsc -p tsconfig.build.json --declaration --out ./dist/types/index.d.ts",
"ci": "run-s lint report",
"clean": "rimraf ./dist .cache .npmignore",
"lint": "run-p lint:*",
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import type {
UserCredentials,
UserProfile
} from './Auth0RemixTypes.js';
export * from './Auth0RemixTypes.js';
import type { AppLoadContext } from '@remix-run/server-runtime';

export enum Token {
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"preserveSymlinks": false,
"target": "ES2020",
"module": "NodeNext",
"declaration": true,
"moduleResolution": "NodeNext",
"emitDeclarationOnly": false,
"skipDefaultLibCheck": true,
Expand Down

0 comments on commit 774f9ea

Please sign in to comment.