Skip to content

Commit

Permalink
fix(tsconfig): Enable declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
EntraptaJ committed May 25, 2020
1 parent 4e33db7 commit ccd8674
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@
"strictPropertyInitialization": false,

// Source Maps
"inlineSourceMap": true,
"inlineSourceMap": false,
"outDir": "./dist",
"rootDir": "./src",

"declaration": true,

// Features
"experimentalDecorators": true,
"emitDecoratorMetadata": true
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": ["src/**/*", "bin/**/*", "__tests__/resolvePath.test.ts"]
"include": ["src/**/*", "__tests__/resolvePath.test.ts"]
}

0 comments on commit ccd8674

Please sign in to comment.