mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
72b9fa85bd
* simplify index-packages * Fix import map location * sqs modules needs permission :x --------- Co-authored-by: Max Howell <mxcl@me.com>
24 lines
434 B
Plaintext
24 lines
434 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.22.1/import-map.json"
|
|
}
|