tsconfig.json 598 B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. "target": "es2015",
  4. "module": "esnext",
  5. "lib": ["esnext", "dom"],
  6. "allowJs": true,
  7. "checkJs": false,
  8. "noImplicitAny": false,
  9. "isolatedModules": false,
  10. "experimentalDecorators": true,
  11. "esModuleInterop": true,
  12. "noImplicitThis": false,
  13. "strictNullChecks": false,
  14. "skipLibCheck": true,
  15. "moduleResolution": "node",
  16. "resolveJsonModule": true,
  17. "jsx": "preserve",
  18. "noEmit": true,
  19. "baseUrl": "./",
  20. "paths": {
  21. "@/*": ["./src/*"]
  22. }
  23. },
  24. "include": ["**/*.ts", "**/*.tsx"],
  25. "compileOnSave": false
  26. }