Skip to content

Commit

Permalink
Add tsconfig for jest
Browse files Browse the repository at this point in the history
  • Loading branch information
jonfelixrico committed Apr 5, 2024
1 parent fac617d commit 8cc267f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions server/jest/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"compilerOptions": {
"target": "ES2017",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "CommonJS",
"baseUrl": "../",
"resolveJsonModule": true,
"outDir": "./dist",
"removeComments": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"paths": {
"@/*": ["./src/*"],
"@test/*": ["./jest/*"]
}
},
"include": ["./**/*.ts"],
"exclude": ["./node_modules"]
}

0 comments on commit 8cc267f

Please sign in to comment.