generated from AthennaIO/Template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
config(ts): add emitDecoratorMetadata option to true
- Loading branch information
Showing
4 changed files
with
30 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@athenna/tsconfig", | ||
"version": "4.11.0", | ||
"version": "4.12.0", | ||
"description": "Exports the base TypeScript configuration for Athena applications and packages.", | ||
"license": "MIT", | ||
"author": "João Lenon <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,33 @@ | ||
/** | ||
* @athenna/tsconfig | ||
* | ||
* (c) João Lenon <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
/** | ||
* | ||
* Files that will be copied to the `BUILD_FOLDER_NAME` folder. | ||
*/ | ||
export const META_FILES = [ | ||
'templates/**/*', | ||
'configurer/**/*', | ||
'resources/**/*', | ||
'package.json', | ||
'package-lock.json', | ||
'LICENSE.md', | ||
'README.md' | ||
] | ||
"templates/**/*", | ||
"configurer/**/*", | ||
"resources/**/*", | ||
"package.json", | ||
"package-lock.json", | ||
"LICENSE.md", | ||
"README.md", | ||
]; | ||
|
||
/** | ||
* Path to tsconfig file that will be used by `tsc` compiler. | ||
*/ | ||
export const TS_CONFIG_PATH = 'node_modules/@athenna/tsconfig/tsconfig.lib-build.json' | ||
export const TS_CONFIG_PATH = | ||
"node_modules/@athenna/tsconfig/tsconfig.lib-build.json"; | ||
|
||
/** | ||
* Build folder name that files will be copied to. | ||
*/ | ||
export const BUILD_FOLDER_NAME = 'build' | ||
export const BUILD_FOLDER_NAME = "build"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters