tsconfig.json 531 Bytes
Newer Older
gaoqiong's avatar
gaoqiong committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "compilerOptions": {
    "module": "ES2015",
    "moduleResolution": "node",
    "declaration": true,
    "esModuleInterop": true,
    "target": "ES2017",
    "lib": ["ES2017", "ESNext.BigInt"],
    "sourceMap": true,
    "noUnusedLocals": true,
    "noImplicitAny": true,
    "noImplicitReturns": true,
    "noImplicitThis": true,
    "noUnusedParameters": false,
    "alwaysStrict": true,
    "strictNullChecks": true,
    "pretty": true,
    "allowUnreachableCode": false,
    "incremental": true,
    "newLine": "LF"
  }
}