feat: add lint and format scripts

This commit is contained in:
Valerio Ageno
2024-04-27 10:40:14 +02:00
parent 5d28ffcf33
commit df8d1659c7
11 changed files with 200 additions and 1 deletions
+27
View File
@@ -0,0 +1,27 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"checkJs": true,
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"module": "ES2022",
"moduleResolution": "Bundler",
"noEmit": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "ES2020",
},
"include": [".eslintrc.cjs", "prettier.config.js"],
}