Skip to content
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
3 changes: 1 addition & 2 deletions CODING_STANDARDS.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ Document functions, classes, and types with a single JSDoc block per symbol —
Run from the repo root with `-w <workspace>`, or from the package directory:

- `npm run lint` to check; `npm run lint:fix` to auto-fix (review its changes).
- `npm run tsc` to type-check source.
- `npm run build:tests` to type-check tests — CI compiles them separately from running them.
- `npm run build:tests` to type-check source and tests without emitting — CI compiles them separately from running them. `npm run build` additionally compiles the CommonJS target.

## Unit tests

Expand Down
1 change: 1 addition & 0 deletions tsconfig.cjs.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"extends": "./tsconfig.json",
"files": [],
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "bundler"
Expand Down
40 changes: 4 additions & 36 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,40 +23,8 @@
"skipLibCheck": true,
"pretty": true // Enable pretty formatting for output messages.
},
"files": [],
"references": [
{
"path": "./packages/commons"
},
{
"path": "./packages/tracer"
},
{
"path": "./packages/metrics"
},
{
"path": "./packages/logger"
},
{
"path": "./packages/parameters"
},
{
"path": "./packages/idempotency"
},
{
"path": "./packages/batch"
},
{
"path": "./packages/testing"
},
{
"path": "./packages/parser"
},
{
"path": "./packages/event-handler"
},
{
"path": "./packages/validation"
}
]
// Options base with no program of its own: every project extends this and lists its own
// files. Both empty arrays are needed for tsc and TypeDoc to accept a config with no inputs.
"include": [],
"references": []
}
Loading