tsconfig.json 506 B

123456789101112131415161718192021222324
  1. {
  2. "compilerOptions": {
  3. "allowSyntheticDefaultImports": true,
  4. "declaration": false,
  5. "emitDecoratorMetadata": true,
  6. "experimentalDecorators": true,
  7. "jsx": "react",
  8. "lib": ["es6", "dom"],
  9. "module": "esNext",
  10. "moduleResolution": "node",
  11. "target": "esNext",
  12. "baseUrl": "./app/javascript"
  13. },
  14. "exclude": [
  15. "**/*.test.ts",
  16. "**/*.test.tsx",
  17. "**/*.test.js",
  18. "**/*.test.jsx",
  19. "node_modules",
  20. "vendor",
  21. "public"
  22. ],
  23. "compileOnSave": false
  24. }