mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-11-22 08:56:58 -06:00
25 lines
551 B
JSON
25 lines
551 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"module": "ESNext",
|
|
"target": "es2022",
|
|
"types": [
|
|
"node",
|
|
"@wdio/globals/types",
|
|
"expect-webdriverio",
|
|
"@wdio/mocha-framework",
|
|
"@wdio/browser-runner"
|
|
],
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["src"]
|
|
}
|