mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-30 10:39:17 -05:00
* playwright testing for electron * pipeline updates * fix normal e2e scripts * fix path to artifact * listing out whats there * attempt to fix ci * umm * again * setting a viewport * window size to be consistent across machine for tests * now it work... Righhttt? * hmm * do it * worflow * will this work * oops * dont skip * trust in the pipeline gods * remove update snapshots, just do it in the pipeline * change name of snapshot to account for os * lint * fix package script
16 lines
428 B
JSON
16 lines
428 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,
|
||
"outDir": "build"
|
||
},
|
||
"include": ["."],
|
||
"exclude": ["**/node_modules/*", "build/**/*", "e2e/**/*"]
|
||
}
|