tsconfig.json 1.0 KB

123456789101112131415161718
  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", "node", "@testing-library/cypress"],
  15. "allowImportingTsExtensions": true
  16. },
  17. "include": ["**/*.ts", "**/*.js"]
  18. }