tsconfig.json 536 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "outDir": "lib",
  4. "rootDir": "src",
  5. "allowSyntheticDefaultImports": true,
  6. "composite": true,
  7. "declaration": true,
  8. "esModuleInterop": true,
  9. "incremental": true,
  10. "jsx": "react",
  11. "lib": ["dom", "es2015"],
  12. "module": "commonjs",
  13. "moduleResolution": "node",
  14. "noEmitOnError": true,
  15. "noImplicitAny": true,
  16. "noUnusedLocals": true,
  17. "preserveWatchOutput": true,
  18. "resolveJsonModule": true,
  19. "target": "es2015",
  20. "types": []
  21. },
  22. "include": ["src/*"]
  23. }