pantry/deno.jsonc

30 lines
681 B
Plaintext
Raw Normal View History

{
"compilerOptions": {
"allowJs": false,
"strict": true
},
"tasks": {
"typecheck": "deno check --unstable scripts/*.ts"
// ^^ doesn't work yet due to lack of glob support
},
"fmt": {
"files": {
"exclude": [
"./"
]
}
},
"tea": {
"dependencies": {
"deno.land": "^1.30"
2023-02-11 13:52:24 +03:00
},
"env": {
// if your primary tea.prefix is somewhere else then youll
// need to `tea --sync` in this dev-env
"TEA_PANTRY_PATH": "{{srcroot}}:{{home}}/.tea/tea.xyz/var/pantry",
"TEA_PREFIX": "{{srcroot}}/tea.out"
}
},
2023-02-11 13:52:24 +03:00
"importMap": "https://raw.githubusercontent.com/teaxyz/cli/v0.22/import-map.json"
}