Sync articles marked toread in kipclip to Crosspoint Reader (Xteink X4)
1{
2 "$schema": "https://raw.githubusercontent.com/denoland/deno/98f62cee78e85bfc47c62ed703777c6bc8794f1c/cli/schemas/config-file.v1.json",
3 "lock": false,
4 "tasks": {
5 "check": "deno fmt --check && deno lint && deno check --allow-import backend/**/*.ts shared/**/*.ts",
6 "fmt": "deno fmt",
7 "deploy": "deno task check && vt push"
8 },
9 "compilerOptions": {
10 "noImplicitAny": false,
11 "strict": true,
12 "types": ["https://www.val.town/types/valtown.d.ts"],
13 "lib": [
14 "dom",
15 "dom.iterable",
16 "dom.asynciterable",
17 "deno.ns",
18 "deno.unstable"
19 ]
20 },
21 "lint": {
22 "include": ["backend/", "shared/"],
23 "rules": {
24 "exclude": ["no-explicit-any", "no-import-prefix"]
25 }
26 },
27 "fmt": {
28 "include": ["backend/", "shared/"],
29 "lineWidth": 100,
30 "indentWidth": 2
31 },
32 "node_modules_dir": false,
33 "experimental": {
34 "unstable-node-globals": true,
35 "unstable-temporal": true,
36 "unstable-worker-options": true,
37 "unstable-sloppy-imports": true
38 }
39}