mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-09-24 21:40:48 +02:00
* feat(tests): add api e2e tests * lockfile * mobile * try linux fix [skip ci] * ios fix * fix test on windows * improve cache * fix pnpm audit [skip ci]
21 lines
707 B
JSON
21 lines
707 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2023",
|
|
"module": "ESNext",
|
|
// The specs run through tsx (esbuild, pulled in by @wdio/cli), and the
|
|
// plugins' published type definitions use extensionless relative imports,
|
|
// so bundler-style resolution is what matches the runtime and resolves
|
|
// the plugin types.
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["ES2023", "DOM", "DOM.AsyncIterable"],
|
|
"types": ["node", "@wdio/globals/types", "@wdio/mocha-framework"],
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["wdio.*.ts", "test/**/*.ts"]
|
|
}
|