-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
19 additions
and
55 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
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 |
---|---|---|
|
@@ -5,5 +5,9 @@ | |
}, | ||
"include": [ | ||
"./src/**/*.ts" | ||
], | ||
"exclude": [ | ||
"node_modules", | ||
"**/*.spec.ts" | ||
] | ||
} |
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,19 +1,10 @@ | ||
{ | ||
// Extends base TypeScript configuration from 'tsconfig.json' | ||
"extends": "./tsconfig.json", | ||
|
||
"compilerOptions": { | ||
// If enabled (true), generates corresponding '.d.ts' file alongside the output file. | ||
"declaration": true, | ||
|
||
// Specifies the module system for the output bundle. "commonjs" is a standard for structuring and organizing JavaScript code. | ||
"module": "commonjs", | ||
|
||
// The location where the output files will be placed. | ||
"outDir": "./dist/cmd/" | ||
}, | ||
|
||
// A list of glob patterns that exclude certain files from the compilation. | ||
// Here, it's set to exclude all the files in 'node_modules' and any file ending in '.spec.ts'. | ||
"exclude": ["node_modules", "**/*.spec.ts"] | ||
} | ||
// Extends base TypeScript configuration from 'tsconfig.json' | ||
"extends": "./tsconfig.json", | ||
"compilerOptions": { | ||
// Specifies the module system for the output bundle. "commonjs" is a standard for structuring and organizing JavaScript code. | ||
"module": "commonjs", | ||
// The location where the output files will be placed. | ||
"outDir": "./dist/cmd/" | ||
}, | ||
} |
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,26 +1,8 @@ | ||
{ | ||
// Extends base TypeScript configuration from 'tsconfig.json' | ||
"extends": "./tsconfig.json", | ||
|
||
"compilerOptions": { | ||
// Specifies the module system for the output bundle. "ESNext" refers to the latest version of ECMAScript (JavaScript). | ||
"module": "ESNext", | ||
|
||
// The version of JavaScript that the compiler will output. "ESNext" means the latest version. | ||
"target": "ESNext", | ||
|
||
// The location where the output files will be placed. | ||
"outDir": "./dist/esm/", | ||
|
||
// If enabled (true), generates corresponding '.d.ts' file alongside the output file. | ||
"declaration": true, | ||
|
||
// If enabled, only declaration files will be emitted and no JavaScript files will be output. | ||
// Currently commented out, so JavaScript files are being output as well. | ||
// "emitDeclarationOnly": true | ||
}, | ||
|
||
// A list of glob patterns that exclude certain files from the compilation. | ||
// Here, it's set to exclude all the files in 'node_modules' and any file ending in '.spec.ts'. | ||
"exclude": ["node_modules", "**/*.spec.ts"] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -5,5 +5,9 @@ | |
}, | ||
"include": [ | ||
"./src/**/*.ts" | ||
], | ||
"exclude": [ | ||
"node_modules", | ||
"**/*.spec.ts" | ||
] | ||
} |
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