/ mission-control / tsconfig.json
tsconfig.json
 1  {
 2    "include": ["**/*.ts", "**/*.tsx"],
 3    "compilerOptions": {
 4      "target": "ES2022",
 5      "jsx": "react-jsx",
 6      "module": "ESNext",
 7      "baseUrl": ".",
 8      "paths": {
 9        "#/*": ["./src/*"],
10        "@/*": ["./src/*"]
11      },
12      "lib": ["ES2022", "DOM", "DOM.Iterable"],
13      "types": ["vite/client"],
14  
15      /* Bundler mode */
16      "moduleResolution": "bundler",
17      "allowImportingTsExtensions": true,
18      "verbatimModuleSyntax": true,
19      "noEmit": true,
20  
21      /* Linting */
22      "skipLibCheck": true,
23      "strict": true,
24      "noUnusedLocals": true,
25      "noUnusedParameters": true,
26      "noFallthroughCasesInSwitch": true,
27      "noUncheckedSideEffectImports": true
28    }
29  }