1
1
mirror of https://github.com/theoludwig/react-component-form.git synced 2024-07-06 18:40:13 +02:00

style: fix linting

This commit is contained in:
Divlo 2023-04-02 22:10:52 +02:00
parent 5bb73df804
commit 040e3a0ae1
No known key found for this signature in database
GPG Key ID: 8F9478F220CE65E9
2 changed files with 5 additions and 16 deletions

1
.gitignore vendored
View File

@ -5,6 +5,7 @@ node_modules
# production
build
dist
.next
# testing
coverage

View File

@ -3,15 +3,9 @@
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"lib": [
"dom",
"dom.iterable",
"ESNext"
],
"lib": ["dom", "dom.iterable", "ESNext"],
"allowJs": true,
"types": [
"cypress"
],
"types": ["cypress"],
"noEmit": true,
"moduleResolution": "node",
"resolveJsonModule": true,
@ -21,12 +15,6 @@
"verbatimModuleSyntax": false,
"isolatedModules": true
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}