tsconfig.json 608 B

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