tsconfig.json 493 B

1234567891011121314151617
  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": "dist",
  9. "declaration": true,
  10. "strict": true,
  11. "alwaysStrict": true,
  12. "noImplicitAny": true,
  13. "strictNullChecks": true,
  14. "typeRoots": ["./node_modules/@types", "types"],
  15. "skipLibCheck": true // Temp workaround for Duplicate identifier tsc errors
  16. }
  17. }