/ packages / cli / tsconfig.json
tsconfig.json
 1  {
 2      "compilerOptions": {
 3          "moduleResolution": "bundler",
 4          "moduleDetection": "force",
 5          "module": "preserve",
 6          "target": "esnext",
 7          "lib": ["ESNext"],
 8  
 9          "allowImportingTsExtensions": true,
10          "noEmit": true,
11  
12          "strict": true,
13          "skipLibCheck": true,
14          "noFallthroughCasesInSwitch": true,
15          "noUncheckedIndexedAccess": true,
16          "noImplicitOverride": true,
17  
18          "baseUrl": ".",
19          "paths": {
20              "~/*": ["./src/*"]
21          },
22  
23          "noUnusedLocals": false,
24          "noUnusedParameters": false,
25          "noPropertyAccessFromIndexSignature": false
26      },
27      "include": ["src"]
28  }