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 {
height: 30px;
margin-left: .5em;
margin-right: .5em;
margin-left: 0.5em;
margin-right: 0.5em;
}
.feed {
width: $feedWidth;

View File

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