just the currents, never the identities
1{
2 "$schema": "https://raw.githubusercontent.com/denoland/deno/98f62cee78e85bfc47c62ed703777c6bc8794f1c/cli/schemas/config-file.v1.json",
3 "name": "driftline-analytics",
4 "version": "0.1.1",
5 "lock": false,
6 "compilerOptions": {
7 "noImplicitAny": false,
8 "strict": true,
9 "types": ["https://www.val.town/types/valtown.d.ts"],
10 "lib": [
11 "dom",
12 "dom.iterable",
13 "dom.asynciterable",
14 "deno.ns",
15 "deno.unstable"
16 ]
17 },
18 "lint": {
19 "include": ["**/*.ts"],
20 "rules": {
21 "exclude": ["no-explicit-any", "no-import-prefix"]
22 }
23 },
24 "fmt": {
25 "include": ["**/*.ts", "**/*.json"]
26 },
27 "tasks": {
28 "check": "deno check --allow-import backend/index.http.ts",
29 "lint": "deno lint",
30 "fmt": "deno fmt",
31 "fmt:check": "deno fmt --check",
32 "test": "deno test --allow-import",
33 "deploy": "deno task fmt && deno task lint && deno task check && vt push"
34 },
35 "node_modules_dir": false,
36 "experimental": {
37 "unstable-node-globals": true,
38 "unstable-temporal": true,
39 "unstable-worker-options": true,
40 "unstable-sloppy-imports": true
41 }
42}