tsconfig.json 557 B

12345678910111213141516171819
  1. {
  2. "extends": "../../tsconfig.json",
  3. "include": ["src/**/*.ts", "src/**/*.tsx"],
  4. "exclude": ["dist", "node_modules"],
  5. "compilerOptions": {
  6. "rootDirs": [".", "stories"],
  7. "module": "esnext",
  8. "outDir": "compiled",
  9. "declaration": true,
  10. "declarationDir": "dist",
  11. "strict": true,
  12. "alwaysStrict": true,
  13. "noImplicitAny": true,
  14. "strictNullChecks": true,
  15. "typeRoots": ["./node_modules/@types", "types"],
  16. "skipLibCheck": true, // Temp workaround for Duplicate identifier tsc errors,
  17. "removeComments": false
  18. }
  19. }