1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-09 09:45:52 +02:00

chore: fix CI issues

This commit is contained in:
Divlo 2023-04-02 23:16:51 +02:00
parent d49a8a7470
commit 361ea37deb
No known key found for this signature in database
GPG Key ID: 8F9478F220CE65E9
2 changed files with 14 additions and 13 deletions

View File

@ -1,4 +1,4 @@
import { Footer } from 'components/Footer'
import { Footer } from '@/components/Footer'
describe('<Footer />', () => {
it('should render with appropriate link tag version', () => {

View File

@ -3,21 +3,22 @@
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowJs": true,
"jsx": "preserve",
"sourceMap": true,
"removeComments": true,
"noEmit": true,
"types": ["cypress"],
"baseUrl": ".",
"lib": ["dom", "dom.iterable", "ESNext"],
"allowJs": true,
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
},
"types": ["cypress"],
"noEmit": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"exactOptionalPropertyTypes": false,
"verbatimModuleSyntax": false
"verbatimModuleSyntax": false,
"isolatedModules": true
},
"exclude": ["dist", ".next", "out", "next.config.js"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}