tsconfig.base.json 852 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "compilerOptions": {
  3. "target": "es2015",
  4. "lib": ["dom", "dom.iterable", "esnext"],
  5. "module": "commonjs",
  6. "jsx": "react",
  7. "allowJs": true,
  8. "skipLibCheck": true,
  9. "declaration": true,
  10. "downlevelIteration": true,
  11. "sourceMap": true,
  12. "resolveJsonModule": true,
  13. /* Strict Type-Checking Options */
  14. "strict": true,
  15. /* Additional Checks */
  16. "noImplicitReturns": true,
  17. "noFallthroughCasesInSwitch": true,
  18. "forceConsistentCasingInFileNames": true,
  19. "isolatedModules": true,
  20. /* Module Resolution Options */
  21. "moduleResolution": "node",
  22. "allowSyntheticDefaultImports": true,
  23. "esModuleInterop": true,
  24. /* Uncomment to use local jupyterlab instance */
  25. // "paths": { "@jupyterlab/*": ["../jupyterlab/packages/*"] },
  26. /* Logging */
  27. "preserveWatchOutput": true
  28. }
  29. }