summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: be66851155dc6f5cdc0c72402935ff9981b5ee07 (plain)
1
2
3
4
5
6
7
8
9
10
11
{
  "compilerOptions": {
    // this aligns with Vue's browser support
    "target": "es5",
    // this enables stricter inference for data properties on `this`
    "strict": true,
    // if using webpack 2+ or rollup, to leverage tree shaking:
    "module": "es2015",
    "moduleResolution": "node"
  }
}