mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-11-21 01:21:54 +08:00
0752ec5e05
* chore: introduce auto imports most likely broken as hell * more progress * chore(deps): update deps * progress! * feat: add initial e2e test setup * test: cleanup e2e tests and add a github action * test: adjust screen size to be 1080p * test: make test a bit more resilient * test: allow setting the debug var via workflow dispatch * test: moar e2e tests
26 lines
475 B
JSON
26 lines
475 B
JSON
{
|
|
"ts-node": {
|
|
"files": true
|
|
},
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"lib": [
|
|
"es2018",
|
|
"DOM"
|
|
],
|
|
"esModuleInterop": true,
|
|
"module": "commonjs",
|
|
"strictNullChecks": false,
|
|
"types": [
|
|
"codeceptjs",
|
|
"chai",
|
|
"node"
|
|
],
|
|
"declaration": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|