返回 CodeWhale
tsconfig.json
根目录 / web / tsconfig.json
1 {
2 "compilerOptions": {
3 "target": "ES2022",
4 "lib": ["dom", "dom.iterable", "ES2022"],
5 "allowJs": false,
6 "skipLibCheck": true,
7 "strict": true,
8 "noEmit": true,
9 "esModuleInterop": true,
10 "module": "esnext",
11 "moduleResolution": "bundler",
12 "resolveJsonModule": true,
13 "isolatedModules": true,
14 "jsx": "preserve",
15 "incremental": true,
16 "plugins": [{ "name": "next" }],
17 "paths": {
18 "@/*": ["./*"]
19 }
20 },
21 "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
22 "exclude": ["node_modules", ".next", ".open-next", "worker.ts"]
23 }
24
24 lines JSON