mirror of
https://github.com/usatiuk/photos.git
synced 2025-10-28 15:27:49 +01:00
38 lines
778 B
JSON
38 lines
778 B
JSON
{
|
|
"plugins": [
|
|
"jest",
|
|
"react",
|
|
"react-hooks",
|
|
"html"
|
|
],
|
|
"extends": [
|
|
"plugin:jest/recommended",
|
|
"plugin:react-hooks/recommended",
|
|
"plugin:react/recommended"
|
|
],
|
|
"env": {
|
|
"browser": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
"project": "./tsconfig.json"
|
|
},
|
|
"settings": {
|
|
"import/parsers": {
|
|
"@typescript-eslint/parser": [
|
|
".ts",
|
|
".tsx"
|
|
]
|
|
},
|
|
"import/resolver": {
|
|
"typescript": {
|
|
"alwaysTryTypes": true,
|
|
"project": [
|
|
"./tsconfig.json"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
} |