mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-04-08 17:03:53 +02:00
31 lines
598 B
JSON
31 lines
598 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"moduleResolution": "node",
|
||
|
"module": "ESNext",
|
||
|
"target": "es2022",
|
||
|
"lib": [
|
||
|
"es2022",
|
||
|
"dom"
|
||
|
],
|
||
|
"types": [
|
||
|
"node",
|
||
|
"@wdio/globals/types",
|
||
|
"expect-webdriverio",
|
||
|
"@wdio/mocha-framework"
|
||
|
],
|
||
|
"skipLibCheck": true,
|
||
|
"noEmit": true,
|
||
|
"allowImportingTsExtensions": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"strict": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noFallthroughCasesInSwitch": true
|
||
|
},
|
||
|
"include": [
|
||
|
"test",
|
||
|
"wdio.conf.ts"
|
||
|
]
|
||
|
}
|