vue3-realworld-example-app/cypress/tsconfig.json

15 lines
391 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["./**/*.{ts,json}", ".eslintrc.js", "../src/router.ts", "../src/plugins/global-components.ts"],
"compilerOptions": {
"baseUrl": ".",
"isolatedModules": false,
"target": "es5",
"lib": ["es5", "dom"],
"types": ["cypress", "@testing-library/cypress"],
"paths": {
"src/*": ["../src/*"],
}
}
}