Files
archived-tauri-plugin-webso…/examples/tauri-app/tsconfig.json
Fabian-Lars 89d212e20b chore(websocket): Convert websocket example to vanilla ts (#805)
* chore(websocket): Convert ws example to vanilla-ts

* fix gitignore

Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/7129274732

Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
2023-12-07 14:04:20 +00:00

24 lines
527 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"]
}