Skip to content

Commit

Permalink
chore: module-resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanbas21 committed Oct 24, 2024
1 parent 6107e40 commit bb70c3c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 1 addition & 0 deletions e2e/davinci-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "davinci-app",
"description": "Ping DaVinci Client Test App",
"type": "module",
"private": true,
"dependencies": {
"@forgerock/davinci-client": "workspace:*",
Expand Down
3 changes: 1 addition & 2 deletions e2e/davinci-app/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
"types": ["vite/client", "node"],
"moduleResolution": "node"
"moduleResolution": "Node16"
},
"exclude": ["src/**/*.spec.ts", "src/**/*.test.ts"],
"include": ["src/**/*.ts", "src/interceptor.ts"]
Expand Down
5 changes: 2 additions & 3 deletions e2e/davinci-app/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,15 @@
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ESNext", "DOM"],
"moduleResolution": "Node",
"moduleResolution": "Node16",
"strict": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"noImplicitReturns": true,
"skipLibCheck": true,
"types": ["vite/client", "vitest"]
"skipLibCheck": true
},
"include": ["src"],
"references": []
Expand Down

0 comments on commit bb70c3c

Please sign in to comment.