-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeno.json
37 lines (37 loc) · 811 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
34
35
36
37
{
"lock": false,
"tasks": {
"test": "deno test --allow-all",
"build": "deno run -A https://deno.land/x/wasmbuild@0.11.0/main.ts",
"build:debug": "deno run -A https://deno.land/x/wasmbuild@0.11.0/main.ts --debug --skip-opt"
},
"lint": {
"files": {
"exclude": [
".deno-cache",
"./target/",
"./test/fixture/app/.build/",
"./test/fixture/importMap/vendor/",
"./test/fixture/graph/",
"./test/__snapshots__/"
]
}
},
"fmt": {
"files": {
"exclude": [
".deno-cache",
"./crates/",
"./target/"
]
},
"options": {
"lineWidth": 100
}
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react"
},
"importMap": "./test/fixture/app/importMap.json"
}