Skip to content

Commit

Permalink
chore: skip type check on .d.ts files
Browse files Browse the repository at this point in the history
  • Loading branch information
becem-gharbi committed May 17, 2023
1 parent 503db5d commit 30f61c1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
APP_NAME=
CREDENTIAL_SECRET=
PORT=
APP_NAME =
CREDENTIAL_SECRET =
PORT =
MONGO_DB_URL =
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
"moduleResolution": "NodeNext",
"target": "ES2020",
"sourceMap": true,
"outDir": "dist"
"outDir": "dist",
"skipLibCheck": true
},
"include": ["src/**/*"],
"include": ["src/**/*.ts"],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
Expand Down

0 comments on commit 30f61c1

Please sign in to comment.