chore: update typecheck

This commit is contained in:
dec0dOS 2023-10-04 20:09:38 +01:00
parent 473c61b78b
commit c10ffbe378
3 changed files with 4 additions and 21 deletions

View file

@ -1,18 +1,10 @@
{ {
"extends": "../tsconfig.json",
"compilerOptions": { "compilerOptions": {
"rootDir": ".", "rootDir": ".",
"baseUrl": ".", "baseUrl": ".",
"allowJs": true,
"checkJs": true,
"noEmit": true,
"skipLibCheck": true,
"module": "CommonJS", "module": "CommonJS",
"moduleResolution": "Node", "moduleResolution": "Node"
"target": "ESNext",
"lib": ["ESNext", "dom"],
"strict": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": true
}, },
"include": ["."] "include": ["."]
} }

View file

@ -1,18 +1,10 @@
{ {
"extends": "../tsconfig.json",
"compilerOptions": { "compilerOptions": {
"rootDir": ".", "rootDir": ".",
"baseUrl": "src", "baseUrl": "src",
"allowJs": true,
"checkJs": true,
"noEmit": true,
"skipLibCheck": true,
"module": "NodeNext", "module": "NodeNext",
"moduleResolution": "NodeNext", "moduleResolution": "NodeNext",
"target": "ESNext",
"lib": ["ESNext", "dom"],
"strict": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"jsx": "preserve" "jsx": "preserve"
}, },
"include": ["src"] "include": ["src"]

View file

@ -9,6 +9,5 @@
"strict": true, "strict": true,
"noImplicitAny": false, "noImplicitAny": false,
"allowSyntheticDefaultImports": true "allowSyntheticDefaultImports": true
}, }
"include": ["backend", "frontend"]
} }