forked from openclaw/mcporter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
17 lines (17 loc) · 439 Bytes
/
Copy pathtsconfig.json
File metadata and controls
17 lines (17 loc) · 439 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Bundler",
"target": "ES2023",
"lib": ["ES2023", "DOM"],
"verbatimModuleSyntax": true,
"allowImportingTsExtensions": false,
"strict": true,
"noUncheckedIndexedAccess": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"noEmit": true,
"types": ["node", "bun-types"]
},
"include": ["src", "tests", "scripts", "docs"]
}