mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-22 19:01:02 +01:00
29 lines
773 B
JSON
29 lines
773 B
JSON
{
|
|
"imports": {
|
|
"$config": "./src/utils/config/config.ts"
|
|
},
|
|
"tasks": {
|
|
"dev": "APP_BASE_PATH=./temp vite dev",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"prepare": "svelte-kit sync || echo ''",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
"format": "prettier --write .",
|
|
"lint": "prettier --check . && eslint ."
|
|
},
|
|
"compilerOptions": {
|
|
"lib": ["deno.window", "dom"],
|
|
"strict": true
|
|
},
|
|
"exclude": ["build/", ".svelte-kit/", "node_modules/"],
|
|
"fmt": {
|
|
"exclude": ["build/", ".svelte-kit/", "node_modules/"],
|
|
"indentWidth": 2,
|
|
"useTabs": false
|
|
},
|
|
"lint": {
|
|
"exclude": ["build/", ".svelte-kit/", "node_modules/"]
|
|
}
|
|
}
|