summaryrefslogtreecommitdiff
path: root/deno2/js/tsconfig.json
blob: e9d42d62df9cc934e18529c3ea910417df491c8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "compilerOptions": {
    "allowJs": true,
    "module": "commonjs",
    "noImplicitAny": true,
    "sourceMap": true,
    "removeComments": true,
    "preserveConstEnums": true,
    "target": "es2017",
    "noImplicitReturns": true,
    "pretty": true,
    "noFallthroughCasesInSwitch": true,
    "allowUnreachableCode": false,
    "experimentalDecorators": true
  },
  "include": ["**/*.ts", "**/*.js"],
  "exclude": ["mock_runtime.js", "node_modules"]
}