tsconfig.json 603 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "allowJs": true,
  4. "allowSyntheticDefaultImports": true,
  5. "lib": ["dom", "es2017"],
  6. "noEmit": true,
  7. "module": "esnext",
  8. "moduleResolution": "node",
  9. "noUnusedLocals": true,
  10. "noUnusedParameters": true,
  11. "preserveConstEnums": true,
  12. "removeComments": false,
  13. "skipLibCheck": true,
  14. "sourceMap": true,
  15. "strict": true,
  16. "target": "esnext",
  17. "baseUrl": ".",
  18. "paths": {
  19. "*": ["*", "resources/js/*"]
  20. }
  21. },
  22. "include": ["resources/**/*"]
  23. }