tsconfig.json 665 字节
Newer Older
陈文彬 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{
  "compilerOptions": {
    "target": "esnext",
    "module": "esnext",
    "moduleResolution": "node",
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "allowSyntheticDefaultImports": true,
    "strictFunctionTypes": false,
    "jsx": "react",
    "baseUrl": ".",
    "allowJs": true,
    "esModuleInterop": true,
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "experimentalDecorators": true,
N
nebv 已提交
17 18 19 20
    "lib": [
      "dom",
      "esnext"
    ],
陈文彬 已提交
21 22 23
    "incremental": true,
    "skipLibCheck": true,
    "paths": {
N
nebv 已提交
24 25 26
      "/@/*": [
        "src/*"
      ]
陈文彬 已提交
27 28
    }
  },
N
nebv 已提交
29 30 31 32 33
  "exclude": [
    "node_modules",
    "dist",
    "**/*.js"
  ]
陈文彬 已提交
34
}