Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update tspconfig.json
  • Loading branch information
tjprescott committed Aug 2, 2024
commit bf34f2a61ee7b7417a80512f33db4404bcff7e2c
9 changes: 5 additions & 4 deletions tools/tsp-client/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"compilerOptions": {
"outDir": "dist",
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2022",
"module": "Node16",
"moduleResolution": "node16",
"strict": true,
"noImplicitAny": true,
"noUnusedLocals": true,
Expand All @@ -13,7 +13,8 @@
"noImplicitOverride": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true
"noPropertyAccessFromIndexSignature": true,
"sourceMap": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"],
Expand Down