Skip to content

Commit

Permalink
Merge pull request #97 from apicgg/fix/update-tsconfig
Browse files Browse the repository at this point in the history
update: update tsconfig
  • Loading branch information
apicgg authored Dec 17, 2023
2 parents 5cea85a + 8d5ca73 commit 30f04d3
Showing 1 changed file with 13 additions and 20 deletions.
33 changes: 13 additions & 20 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,20 @@
{
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"lib": ["dom", "es6", "es2017", "esnext.asynciterable"],
"allowJs": true,
"esModuleInterop": true,
"isolatedModules": true,
"lib": ["es2022"],
"module": "NodeNext",
"moduleDetection": "force",
"moduleResolution": "NodeNext",
"noUncheckedIndexedAccess": true,
"outDir": "./build",
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"outDir": "./build",
"moduleResolution": "node",
"removeComments": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"resolveJsonModule": true
"strict": true,
"target": "es2022"
},
"exclude": ["node_modules"],
"include": ["backend/src"]
"include": ["./backend/src"]
}

0 comments on commit 30f04d3

Please sign in to comment.