tsconfig.json 540 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "module": "commonjs",
  5. "outDir": "js",
  6. "jsx": "react",
  7. "baseUrl": ".",
  8. "paths": {
  9. "webpackedGlass/*": ["src/js/baglass/react/*"],
  10. "*": ["*", "src/js/baglass/*"]
  11. },
  12. "noFallthroughCasesInSwitch": true,
  13. "noImplicitAny": true,
  14. "noImplicitReturns": true,
  15. "noImplicitThis": true,
  16. "experimentalDecorators": true,
  17. "esModuleInterop": true
  18. },
  19. "include": ["./src/**/*"]
  20. }