Skip to content

Commit

Permalink
chore(tsconfig): "added moduleResolution and typeRoots options, modif…
Browse files Browse the repository at this point in the history
…ied include paths"
  • Loading branch information
m-mdy-m committed Jul 29, 2024
1 parent 78683af commit 4b513fa
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true
"skipLibCheck": true,
"moduleResolution": "node",
"typeRoots": [
"node_modules/@types",
"lib/types"
]
},
"include": [
"./lib/**/*.ts"
]
"include": ["lib/**/*.ts", "lib/types/gland.d.ts"]
}

0 comments on commit 4b513fa

Please sign in to comment.