summaryrefslogtreecommitdiffhomepage
path: root/example/tsconfig.json
blob: 8cdf351e965636b26a3043bcd37f49e084557c97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "compilerOptions": {
    "target": "ES2018",
    "lib": ["ES2018", "DOM"],
    "module": "commonjs",
    "esModuleInterop": true,
    "declaration": true,
    "sourceMap": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "outDir": "dist"
  },
  "exclude": [
    "node_modules",
    "**/dist/*"
  ]
}