-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.jsonc
34 lines (34 loc) · 1.03 KB
/
deno.jsonc
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
{
"title": "gas-deno-esbuild-starter",
"description": "gas-deno-esbuild-starter is a starter kit for Google Apps Script by Deno.",
"tasks": {
"login": "deno run -A npm:@google/clasp@2.4.2 login",
"open": "deno run -A npm:@google/clasp@2.4.2 open",
"push": "deno run --allow-env --allow-net --allow-read --allow-sys --allow-write --allow-run --allow-ffi npm:@google/clasp@2.4.2 push -f",
"clean": "deno run --allow-write _tasks/clean.ts",
"build": "deno run --allow-env --allow-net --allow-read --allow-run --allow-write _tasks/build.ts",
"deploy": "deno task build && deno task push"
},
"lint": {
"files": {
"include": ["src", "_tasks"]
}
},
"fmt": {
"files": {
"include": ["src", "_tasks"]
}
},
"test": {
"files": {
"include": ["src/"],
"exclude": ["src/testdata/"]
}
},
"compilerOptions": {
"types": [
// https://github.com/Kazuki-tam/deno-gas-types
"https://raw.githubusercontent.com/Kazuki-tam/deno-gas-types/main/types/index.d.ts"
]
}
}