Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tsconfig.esm.json files #486

Merged
merged 1 commit into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions packages/massa-web3/tsconfig.esm.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
{
// Extends base TypeScript configuration from 'tsconfig.json'
"extends": "./tsconfig.json",
"compilerOptions": {
// The location where the output files will be placed.
"target": "ESNext",
"module": "ESNext",
"outDir": "./dist/esm/",
// Source map options
"sourceMap": true,
"inlineSources": 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"
Expand Down
10 changes: 8 additions & 2 deletions packages/web3-utils/tsconfig.esm.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
{
// Extends base TypeScript configuration from 'tsconfig.json'
"extends": "./tsconfig.json",
"compilerOptions": {
// The location where the output files will be placed.
"target": "ESNext",
"module": "ESNext",
"outDir": "./dist/esm/",
"sourceMap": true,
"inlineSources": true
},
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}
Loading