tsconfig.json 1.0 KB
Newer Older
陈文彬 已提交
1 2
{
  "compilerOptions": {
V
vben 已提交
3
    "target": "esnext",
陈文彬 已提交
4 5 6
    "module": "esnext",
    "moduleResolution": "node",
    "strict": true,
V
vben 已提交
7
    "noLib": false,
陈文彬 已提交
8 9 10
    "forceConsistentCasingInFileNames": true,
    "allowSyntheticDefaultImports": true,
    "strictFunctionTypes": false,
11
    "jsx": "preserve",
陈文彬 已提交
12 13
    "baseUrl": ".",
    "allowJs": true,
V
vben 已提交
14
    "sourceMap": true,
陈文彬 已提交
15
    "esModuleInterop": true,
V
vben 已提交
16
    "resolveJsonModule": true,
陈文彬 已提交
17 18 19
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "experimentalDecorators": true,
20
    "lib": ["dom", "esnext"],
V
vben 已提交
21
    "noImplicitAny": false,
陈文彬 已提交
22
    "skipLibCheck": true,
V
vben 已提交
23
    "removeComments": true,
陈文彬 已提交
24
    "paths": {
V
Vben 已提交
25 26
      "/@/*": ["src/*"],
      "/#/*": ["types/*"]
陈文彬 已提交
27 28
    }
  },
V
Vben 已提交
29
  "include": [
V
Vben 已提交
30
    "tests/**/*.ts",
V
Vben 已提交
31 32 33 34 35 36
    "src/**/*.ts",
    "src/**/*.d.ts",
    "src/**/*.tsx",
    "src/**/*.vue",
    "types/**/*.d.ts",
    "types/**/*.ts",
V
Vben 已提交
37 38
    "build/**/*.ts",
    "build/**/*.d.ts",
V
Vben 已提交
39 40
    "mock/**/*.ts",
    "vite.config.ts"
V
Vben 已提交
41
  ],
V
vben 已提交
42
  "exclude": ["node_modules", "tests/server/**/*.ts", "dist", "**/*.js"]
陈文彬 已提交
43
}