mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-18 23:44:59 +01:00
f0201cfe31
* First attempt at automated Playwright tests * Fix deb installation in CI * Try again with .deb * Try xvfb * Fix paths * Prepare macOS runner for UI tests * test_artifacts * Increase test timeout to 30s * Add timeout * Split out build & test stages for easier retrying * Use a single test matrix job * Fix testing * Yarn install * Install deps * Make prep more generic * Update build.yaml * Update build.yaml * Update build.yaml
25 lines
472 B
JSON
25 lines
472 B
JSON
{
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es2016",
|
|
"noImplicitAny": false,
|
|
"sourceMap": false,
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"declaration": true,
|
|
"typeRoots": ["src/@types"],
|
|
"lib": [
|
|
"es2019",
|
|
"dom"
|
|
],
|
|
"types": ["jest", "node"],
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./tests/**/*.ts"
|
|
]
|
|
}
|