Skip to content

Commit

Permalink
dev init
Browse files Browse the repository at this point in the history
  • Loading branch information
Majid committed Mar 2, 2024
1 parent 8579855 commit ea38da2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,17 @@
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */
// "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */

// Generate d.ts files
"declaration": true,
// This compiler run should
// only output d.ts files
"emitDeclarationOnly": true,
// Types should go into this directory.
// Removing this would place the .d.ts files
// next to the .js files
// go to js file when using IDE functions like
// "Go to Definition" in VSCode
"declarationMap": true,
/* Language and Environment */
"target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
Expand Down

0 comments on commit ea38da2

Please sign in to comment.