/ tsconfig.json
tsconfig.json
 1  {
 2    "compilerOptions": {
 3      "baseUrl": "./",
 4      "outDir": "./dist",
 5      "target": "esnext",
 6      "module": "esnext",
 7      "moduleResolution": "bundler",
 8      "jsx": "preserve",
 9      "noImplicitAny": true,
10      "noUnusedLocals": true,
11      "noUnusedParameters": true,
12      "allowSyntheticDefaultImports": true,
13      "declaration": true,
14      "resolveJsonModule": true,
15      "esModuleInterop": true,
16      "sourceMap": true,
17      "strict": true,
18      "skipLibCheck": true,
19      "paths": {
20        "@/*": ["./src/*"]
21      },
22      "lib": ["esnext", "dom"]
23    },
24    "include": ["src/*.ts", "src/*.d.ts", "src/renderer"],
25    "references": [
26      {
27        "path": "./tsconfig.node.json"
28      }
29    ]
30  }