mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
Update CI/release workflows, gitignore, package dependencies, Tauri config, and add linter/formatter configs (oxlint, prettier, knip, vitest browser config).
14 lines
257 B
JSON
14 lines
257 B
JSON
{
|
|
"$schema": "https://unpkg.com/knip@6/schema.json",
|
|
"entry": ["src/main.ts"],
|
|
"project": ["src/**/*.ts"],
|
|
"ignore": [
|
|
"public/**",
|
|
"src-tauri/**"
|
|
],
|
|
"ignoreDependencies": [
|
|
"@tauri-apps/cli"
|
|
],
|
|
"ignoreExportsUsedInFile": true
|
|
}
|