tsconfig.json 555 Bytes
Newer Older
Deshui Yu's avatar
Deshui Yu committed
1
2
{
  "compilerOptions": {
3
    "target": "es5",
Deshui Yu's avatar
Deshui Yu committed
4
    "lib": [
5
6
7
      "dom",
      "dom.iterable",
      "esnext"
Deshui Yu's avatar
Deshui Yu committed
8
9
    ],
    "allowJs": true,
10
11
12
13
14
15
    "skipLibCheck": true,
    "esModuleInterop": true,
    "downlevelIteration": true,
    "noImplicitAny": false,
    "allowSyntheticDefaultImports": true,
    "strict": true,
Deshui Yu's avatar
Deshui Yu committed
16
    "forceConsistentCasingInFileNames": true,
17
18
19
20
21
22
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": false,
    "noEmit": true,
    "jsx": "preserve"
Deshui Yu's avatar
Deshui Yu committed
23
  },
24
  "include": [
25
    "src"
Deshui Yu's avatar
Deshui Yu committed
26
  ]
27
}