No Description

tsconfig.json 912B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "compilerOptions": {
  3. "baseUrl": "packages",
  4. "lib": ["es6", "es7", "dom", "scripthost", "webworker"],
  5. "jsx": "react",
  6. "target": "es5",
  7. "module": "commonjs",
  8. "moduleResolution": "node",
  9. "sourceMap": true,
  10. "allowJs": false,
  11. "outDir": "dist",
  12. "experimentalDecorators": true,
  13. "forceConsistentCasingInFileNames": true,
  14. "removeComments": true,
  15. "noImplicitReturns": true,
  16. "noImplicitThis": true,
  17. "noImplicitAny": true,
  18. "allowUnusedLabels": true,
  19. "strictNullChecks": true,
  20. "suppressImplicitAnyIndexErrors": true,
  21. "noUnusedLocals": true,
  22. "allowSyntheticDefaultImports": true,
  23. "skipLibCheck": true,
  24. "paths": {}
  25. },
  26. "include": ["**/*.js", "**/*.ts", "**/*.tsx"],
  27. "exclude": [
  28. "assets",
  29. "build",
  30. "dist",
  31. "indep-pkgs",
  32. "node_modules",
  33. "scripts",
  34. "ssr",
  35. "stories",
  36. "__test__",
  37. "test"
  38. ]
  39. }