๐Ÿ“ฆ Akryum / nodepack

๐Ÿ“„ tsconfig.json ยท 36 lines
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
32
33
34
35
36{
  "compilerOptions": {
    "allowJs": true,
    "checkJs": true,
    "target": "esnext",
    "module": "es6",
    "moduleResolution": "node",
    "allowSyntheticDefaultImports": true,
    "resolveJsonModule": true,
    "skipLibCheck": true,
    "types": [
      "node",
      "webpack-env"
    ],
    "noEmit": true,
    // Strict
    "noImplicitAny": false,
    "noImplicitThis": true,
    "alwaysStrict": true,
    "strictBindCallApply": true,
    "strictFunctionTypes": true,
    // May break autocomplete
    "strictNullChecks": false,
  },
  "include": [
    "globals.d.ts",
    "packages/@nodepack/*/src/**/*",
    "packages/@nodepack/*/types/**/*",
    "packages/@nodepack/service/weback.config.js",
    "packages/@nodepack/migrator/types/MigratorPlugin.d.ts",
  ],
  "exclude": [
    "node_modules"
  ]
}