mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-28 18:40:34 -05:00
* attempt at running with typescript * release notes * working jest tests for TS files * working docker image build * remaining docker images * cleanup * ensure vitest is working * get tests passing in ci * less strict * update release notes * use tsc compiled assets in the published package * scripts * update yarn.lock * Use build path for electron app * PR feedback: move sync-server build out of bin/build-browser * PR feedback: undo moduleResolution change * extend main tsconfig and fix types * PR feedback on scripts and when the sync-server build runs * fix lint (unrelated change) --------- Co-authored-by: alecbakholdin <alecbakholdin@gmail.com>
20 lines
387 B
JSON
20 lines
387 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
// DOM for URL global in Node 16+
|
|
"lib": ["ES2021"],
|
|
"module": "node16",
|
|
"moduleResolution": "node16",
|
|
"noEmit": false,
|
|
"outDir": "build"
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"migrations/**/*",
|
|
"types/**/*",
|
|
"app.ts",
|
|
"bin/**/*"
|
|
],
|
|
"exclude": ["node_modules", "build", "coverage"]
|
|
}
|