tsconfig.json 824 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "compilerOptions": {
  3. "allowJs": true,
  4. "allowSyntheticDefaultImports": true,
  5. "baseUrl": ".",
  6. "outDir": "./dist",
  7. "esModuleInterop": true,
  8. "forceConsistentCasingInFileNames": true,
  9. "importHelpers": true,
  10. "jsx": "react",
  11. "lib": ["dom", "esnext"],
  12. "module": "commonjs",
  13. "moduleResolution": "node",
  14. "noEmitOnError": true,
  15. "noImplicitReturns": true,
  16. "noImplicitThis": true,
  17. "noImplicitAny": true,
  18. "noUnusedLocals": true,
  19. "pretty": true,
  20. "removeComments": false,
  21. "strictNullChecks": true,
  22. "suppressImplicitAnyIndexErrors": true,
  23. "skipLibCheck": true,
  24. "sourceMap": true,
  25. "target": "esnext"
  26. },
  27. "include": ["./storybook/stories/**/*", "../superset-ui-*/src/**/*", "./src/**/*", "./spec/**/*", "storybook/shared/dummyDatasource.ts"]
  28. }