25 lines
389 B
JavaScript
25 lines
389 B
JavaScript
import defineConfig from '@mutoe/eslint-config'
|
|
|
|
export default defineConfig({
|
|
typescript: {
|
|
tsconfigPath: [
|
|
'tsconfig.json',
|
|
'tsconfig.node.json',
|
|
'cypress/e2e/tsconfig.json',
|
|
],
|
|
},
|
|
vue: {
|
|
sfcBlocks: {
|
|
defaultLanguage: {
|
|
script: 'ts',
|
|
},
|
|
},
|
|
},
|
|
test: {
|
|
cypress: true,
|
|
},
|
|
ignores: [
|
|
'src/services/api.ts',
|
|
],
|
|
})
|