Prettier changes (NFC)

This commit is contained in:
Antti Pitkänen
2023-02-28 15:21:50 +02:00
parent a00450dfb5
commit 8076d2de4b
2 changed files with 6 additions and 20 deletions

View File

@@ -389,8 +389,8 @@ footer {
} }
.social { .social {
height: 30px; height: 30px;
margin-left: .5em; margin-left: 0.5em;
margin-right: .5em; margin-right: 0.5em;
} }
.feed { .feed {
width: $feedWidth; width: $feedWidth;

View File

@@ -1,11 +1,7 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "es5", "target": "es5",
"lib": [ "lib": ["dom", "dom.iterable", "esnext"],
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true, "allowJs": true,
"skipLibCheck": true, "skipLibCheck": true,
"strict": false, "strict": false,
@@ -19,17 +15,7 @@
"jsx": "preserve", "jsx": "preserve",
"incremental": true "incremental": true
}, },
"typeRoots": [ "typeRoots": ["./node_modules/@types", "./typings"],
"./node_modules/@types", "exclude": ["node_modules"],
"./typings" "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "./typings/*"]
],
"exclude": [
"node_modules"
],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"./typings/*"
]
} }