tsconfig.json 1.2 KB

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "target": "esnext" /* Specify ECMAScript target version */,
  4. "module": "es2020" /* Specify module code generation */,
  5. "allowJs": true /* Allow JavaScript files to be compiled. */,
  6. // "checkJs": true /* Report errors in .js files. */,
  7. "jsx": "preserve" /* Specify JSX code generation */,
  8. "noEmit": true /* Do not emit outputs. */,
  9. "strict": true /* Enable all strict type-checking options. */,
  10. "moduleResolution": "node" /* Specify module resolution strategy */,
  11. "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
  12. "skipLibCheck": true /* Skip type checking of declaration files. */,
  13. "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
  14. "types": ["cypress", "@testing-library/cypress"]
  15. },
  16. "include": [
  17. "frontend/js/**/*.*",
  18. "modules/**/frontend/js/**/*.*",
  19. "test/frontend/**/*.*",
  20. "modules/**/test/frontend/**/*.*",
  21. "frontend/stories/**/*.*",
  22. "modules/**/stories/**/*.*",
  23. "cypress",
  24. "types"
  25. ]
  26. }