Untitled

 avatar
unknown
plain_text
a month ago
580 B
2
Indexable
{
  "compilerOptions": {
    "allowJs": true,
    "baseUrl": "./",
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,
    "incremental": true,
    "lib": [
      "dom",
      "dom.iterable",
      "esnext"
    ],
    "moduleResolution": "node",
    "outDir": "./dist",
    "resolveJsonModule": true,
    "skipLibCheck": true,
    "strict": true,
    "target": "es5",
  },
  "include": ["**/*.ts"],
}




module.exports = {
  ...baseConfig,
  extends: [...baseConfig.extends, 'plugin:cypress/recommended'],
  plugins: [...baseConfig.plugins, 'cypress'],
};
Leave a Comment