tsconfig.json 764 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "target": "ES2015",
  4. "baseUrl": "./",
  5. "outDir": "lib",
  6. "sourceMap": true,
  7. "allowJs": true,
  8. "module": "es6",
  9. "lib": ["es7", "dom"],
  10. "moduleResolution": "node",
  11. "noImplicitAny": false,
  12. "jsx": "react",
  13. "suppressImplicitAnyIndexErrors": true,
  14. "forceConsistentCasingInFileNames": true,
  15. "allowSyntheticDefaultImports": true,
  16. "experimentalDecorators": true,
  17. "noImplicitReturns": true,
  18. "noImplicitThis": false,
  19. "strictNullChecks": false,
  20. "esModuleInterop": true,
  21. "skipLibCheck": true,
  22. "declaration": true
  23. },
  24. "include": ["**/*.tsx", "**/*.ts"],
  25. "exclude": ["node_modules"]
  26. }