aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: ece24c74edec1a962c75d2d2c7dfd616ee4eabf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "compilerOptions": {
    "lib": ["ES2017"],
    "target": "es6",
    "module": "commonjs",
    "declaration": true,
    "outDir": "dist",
    "declarationDir": "dts",
    "strict": true,
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "esModuleInterop": true,
    "sourceMap": true
  },
  "include": ["src"],
  "exclude": ["node_modules"]
}