返回 DeepSeek-Reasonix
tsconfig.json
根目录 / workers / forum / tsconfig.json
1 {
2 "compilerOptions": {
3 "target": "ES2022",
4 "module": "ES2022",
5 "moduleResolution": "Bundler",
6 "lib": ["ES2022"],
7 "types": ["@cloudflare/workers-types"],
8 "strict": true,
9 "noUnusedLocals": true,
10 "noUnusedParameters": true,
11 "noEmit": true,
12 "skipLibCheck": true,
13 "verbatimModuleSyntax": true
14 },
15 "include": ["src/**/*.ts"]
16 }
17
17 lines JSON