| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "types": ["vite-plugin-svgr/client", "node"], |
| 4 | "target": "ESNext", |
| 5 | "useDefineForClassFields": true, |
| 6 | "lib": [ |
| 7 | "DOM", |
| 8 | "DOM.Iterable", |
| 9 | "ESNext" |
| 10 | ], |
| 11 | "allowJs": false, |
| 12 | "skipLibCheck": true, |
| 13 | "esModuleInterop": false, |
| 14 | "allowSyntheticDefaultImports": true, |
| 15 | "strict": true, |
| 16 | "forceConsistentCasingInFileNames": true, |
| 17 | "module": "ESNext", |
| 18 | "moduleResolution": "Node", |
| 19 | "resolveJsonModule": true, |
| 20 | "isolatedModules": true, |
| 21 | "noEmit": true, |
| 22 | "jsx": "react-jsx", |
| 23 | "baseUrl": "./", |
| 24 | "paths": { |
| 25 | "@/*": [ |
| 26 | "src/*" |
| 27 | ], |
| 28 | "@@/*": [ |
| 29 | "commont/*" |
| 30 | ], |
| 31 | }, |
| 32 | "experimentalDecorators": true, |
| 33 | "emitDecoratorMetadata": true, |
| 34 | }, |
| 35 | "include": [ |
| 36 | "src", |
| 37 | "electron", |
| 38 | "commont" |
| 39 | , "electron/main/api/.ts" ], |
| 40 | "references": [ |
| 41 | { |
| 42 | "path": "./tsconfig.node.json" |
| 43 | } |
| 44 | ], |
| 45 | } |