-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdeno.json
33 lines (33 loc) · 928 Bytes
/
deno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"tasks": {
"types": "deno run --allow-write ./api-type-template.ts",
"npm": "deno run -A ./scripts/npm.ts",
"test": "deno test --allow-env --allow-read --allow-import",
"sync-build-to": "deno run -A ./scripts/sync.ts"
},
"lint": {
"exclude": ["npm/", "examples/"],
"rules": {
"tags": ["recommended"],
"exclude": ["no-explicit-any", "require-yield"]
}
},
"fmt": {
"exclude": ["npm/", "examples/"]
},
"compilerOptions": {
"strict": true,
"lib": ["deno.window", "dom"],
"jsx": "react",
"jsxFactory": "React.createElement",
"jsxFragmentFactory": "React.Fragment"
},
"imports": {
"react": "npm:react@^18.2.0",
"react-dom": "npm:react-dom@^18.2.0",
"react-redux": "npm:react-redux@^8.0.5",
"reselect": "npm:reselect@^4.1.8",
"immer": "npm:immer@^10.0.2",
"effection": "https://deno.land/x/[email protected]/mod.ts"
}
}