mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
30 lines
681 B
Plaintext
30 lines
681 B
Plaintext
{
|
||
"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"
|
||
},
|
||
"env": {
|
||
// if your primary tea.prefix is somewhere else then you’ll
|
||
// need to `tea --sync` in this dev-env
|
||
"TEA_PANTRY_PATH": "{{srcroot}}:{{home}}/.tea/tea.xyz/var/pantry",
|
||
"TEA_PREFIX": "{{srcroot}}/tea.out"
|
||
}
|
||
},
|
||
"importMap": "https://raw.githubusercontent.com/teaxyz/cli/v0.23/import-map.json"
|
||
}
|