mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 12:43:09 -05:00
* Exclude test files from build artifacts - Update crdt tsconfig.dist.json to exclude test files from dist output - Update desktop-electron tsconfig.dist.json to exclude test files from build output This prevents test files from being compiled into dist directories and ensures they won't be picked up by test runners in CI/CD. * Add release notes for PR #6216 --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
17 lines
440 B
JSON
17 lines
440 B
JSON
{
|
||
"extends": "../../tsconfig.json",
|
||
"compilerOptions": {
|
||
// Using ES2021 because that’s the newest version where
|
||
// the latest Node 16.x release supports all of the features
|
||
"target": "ES2021",
|
||
"module": "CommonJS",
|
||
"moduleResolution": "node10",
|
||
"noEmit": false,
|
||
"declaration": true,
|
||
"strict": true,
|
||
"outDir": "dist"
|
||
},
|
||
"include": ["."],
|
||
"exclude": ["dist", "**/*.test.ts", "**/*.spec.ts"]
|
||
}
|