summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 6d53b394bf3042780521f922406fd701796bf8f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "compilerOptions": {
    "target": "es2016",
    "lib": ["ES2020"],
    "module": "commonjs",
    "declaration": true,
    "sourceMap": true,
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,
    "strict": true,
    "skipLibCheck": true,
    "outDir": "./dist",
    "typeRoots": [
      "./node_modules/@types",
      "./node_modules/miniprogram-api-typings"
    ]
  }
}