๐Ÿ“ฆ Akryum / meteor-vite

๐Ÿ“„ tsconfig.json ยท 53 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53{
  "compilerOptions": {
    "incremental": true,
    /* Basic Options */
    "target": "es2018",
    "jsx": "preserve",
    "lib": ["esnext", "dom"],

    /* Module Resolution Options */
    "baseUrl": ".",
    "module": "esNext",
    "moduleResolution": "node",
    "paths": {
      /* Support absolute /imports/* with a leading '/' */
      "/*": ["*"],
      "meteor/*": [
        "node_modules/@types/meteor/*",
        ".meteor/local/types/packages.d.ts"
      ]
    },
    "resolveJsonModule": true,
    "types": ["node", "mocha"],
    "allowJs": true,
    "checkJs": false,
    /* Strict Type-Checking Options */
    "strict": true,
    "strictNullChecks": true,
    "noFallthroughCasesInSwitch": false,
    "noImplicitAny": true,

    "noImplicitReturns": false,
    /* Additional Checks */
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "noEmit": true,
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,

    /* Vite setup */
    "isolatedModules": true,
    "preserveSymlinks": true,
    "skipLibCheck": true
  },
  "include": [
    "imports/**/*",
    "tests/**/*",
    "vite.config.ts",
    "client/**/*",
    ".meteor/local/types/packages.d.ts",
    "node_modules/@types/meteor/**/*"
  ]
}