mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
11ca7336d7
* rework for single pantry * a few things missed
24 lines
432 B
Plaintext
24 lines
432 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"
|
|
}
|
|
},
|
|
"importMap": "https://raw.githubusercontent.com/teaxyz/cli/v0.23/import-map.json"
|
|
}
|