tsconfig.json 768 Bytes
Newer Older
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
1 2 3 4
{
  "compilerOptions": {
    "outDir": "build/dist",
    "module": "esnext",
何乐's avatar
何乐 committed
5 6
    "target": "esnext",
    "lib": ["esnext", "dom"],
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
7 8 9 10 11 12 13 14 15 16 17
    "sourceMap": true,
    "baseUrl": ".",
    "jsx": "react",
    "allowSyntheticDefaultImports": true,
    "moduleResolution": "node",
    "forceConsistentCasingInFileNames": true,
    "noImplicitReturns": true,
    "suppressImplicitAnyIndexErrors": true,
    "noUnusedLocals": true,
    "allowJs": true,
    "experimentalDecorators": true,
何乐's avatar
何乐 committed
18
    "strict": true,
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
19 20 21 22 23 24 25 26 27 28 29 30 31
    "paths": {
      "@/*": ["./src/*"]
    }
  },
  "exclude": [
    "node_modules",
    "build",
    "scripts",
    "acceptance-tests",
    "webpack",
    "jest",
    "src/setupTests.ts",
    "tslint:latest",
duanledexianxianxian's avatar
duanledexianxianxian committed
32 33
    "tslint-config-prettier",
    "./src/pages/system/*"
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
34 35
  ]
}