aboutsummaryrefslogtreecommitdiff
path: root/libs/base-x/tsconfig.json
blob: bb8d1dcc8481264c42f5d6850dabe4e198913b57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
  "compilerOptions": {
    "target": "ES5",
    "module": "commonjs",
    "outDir": "./src",
    "declaration": true,
    "rootDir": "./ts_src",
    "types": [
      "node"
    ],
    "allowJs": false,
    "strict": true,
    "noImplicitAny": true,
    "strictNullChecks": true,
    "strictFunctionTypes": true,
    "strictBindCallApply": true,
    "strictPropertyInitialization": true,
    "noImplicitThis": true,
    "alwaysStrict": true,
    "esModuleInterop": false,
    "noUnusedLocals": true,
    "noUnusedParameters": true
  },
  "include": [
      "ts_src/**/*.ts"
  ],
  "exclude": [
      "**/*.spec.ts",
      "node_modules/**/*"
  ]
}