chore: lint files

This commit is contained in:
Braks
2022-05-11 22:10:40 +02:00
parent 447d24c5a8
commit 22845c210d
133 changed files with 461 additions and 381 deletions
+4 -14
View File
@@ -3,10 +3,7 @@
"baseUrl": ".",
"module": "ESNext",
"target": "es2017",
"lib": [
"DOM",
"ESNext"
],
"lib": ["DOM", "ESNext"],
"noEmit": true,
"declaration": false,
"strict": true,
@@ -18,18 +15,11 @@
"noUnusedLocals": false,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"types": [
"vite/client"
],
"types": ["vite/client"],
"paths": {
"~/*": [
"../package/src/*"
]
"~/*": ["../package/src/*"]
}
},
"exclude": [
"node_modules",
"dist"
],
"exclude": ["node_modules", "dist"],
"references": [{ "path": "./tsconfig.node.json" }]
}