chore: add typecheck and linting for backend

This commit is contained in:
dec0dOS 2023-10-04 20:02:57 +01:00
commit bdf406f99f
10 changed files with 124 additions and 11 deletions

14
tsconfig.json Normal file
View file

@ -0,0 +1,14 @@
{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"noEmit": true,
"skipLibCheck": true,
"target": "ESNext",
"lib": ["ESNext", "dom"],
"strict": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": true
},
"include": ["backend", "frontend"]
}