2023-02-02 17:00:52 +03:00
|
|
|
|
{
|
|
|
|
|
"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": {
|
2023-02-12 19:56:04 +03:00
|
|
|
|
"deno.land": "^1.30",
|
2023-02-18 17:17:32 +03:00
|
|
|
|
"tea.xyz/brewkit": "^0.3"
|
2023-02-11 13:52:24 +03:00
|
|
|
|
},
|
|
|
|
|
"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"
|
2023-02-02 17:00:52 +03:00
|
|
|
|
}
|
|
|
|
|
},
|
2023-02-11 17:59:00 +03:00
|
|
|
|
"importMap": "https://raw.githubusercontent.com/teaxyz/cli/v0.23/import-map.json"
|
2023-02-02 17:00:52 +03:00
|
|
|
|
}
|