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