Skip to content

Commit fdb8fa4

Browse files
committed
- correct tsconfig
1 parent 9e90a3c commit fdb8fa4

File tree

3 files changed

+18
-15
lines changed

3 files changed

+18
-15
lines changed

libs/js/oracledb/langchain-oracledb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"pack:dry": "pnpm build && npm pack --dry-run",
2424
"pack": "pnpm build && npm pack",
2525
"publish": "pnpm build && npm publish",
26-
"clean": "rm -rf .turbo dist/",
26+
"clean": "rm -rf dist/",
2727
"test": "vitest run",
2828
"test:watch": "vitest",
2929
"test:int": "vitest run --mode int",

libs/js/oracledb/langchain-oracledb/tsconfig.json

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,30 @@
55
"rootDir": "./src",
66
"target": "ES2021",
77
"lib": ["ES2021", "ES2022.Object", "DOM"],
8-
"module": "ES2020",
9-
"moduleResolution": "bundler",
8+
"module": "NodeNext",
9+
"moduleResolution": "NodeNext",
1010
"esModuleInterop": true,
1111
"declaration": true,
12+
"declarationMap": true,
13+
"sourceMap": true,
1214
"noImplicitReturns": true,
1315
"noFallthroughCasesInSwitch": true,
1416
"noUnusedLocals": true,
1517
"noUnusedParameters": true,
1618
"useDefineForClassFields": true,
1719
"strictPropertyInitialization": false,
1820
"allowJs": true,
19-
"strict": true
21+
"strict": true,
22+
"skipLibCheck": true,
23+
"forceConsistentCasingInFileNames": true,
24+
"resolveJsonModule": true
2025
},
21-
"include": ["src/**/*"],
22-
"exclude": ["node_modules", "dist", "docs"]
23-
}
26+
"include": [
27+
"src/**/*"
28+
],
29+
"exclude": [
30+
"node_modules",
31+
"dist",
32+
"docs"
33+
]
34+
}

libs/js/oracledb/langchain-oracledb/turbo.json

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

0 commit comments

Comments
 (0)