31 lines
804 B
JSON
31 lines
804 B
JSON
{
|
|
"tasks": {
|
|
"check": "deno fmt && deno lint --fix && deno check **/*.ts && deno test -A",
|
|
"hook": "deno run --allow-read --allow-run --allow-write https://deno.land/x/deno_hooks@0.1.1/mod.ts"
|
|
},
|
|
"workspace": [
|
|
"packages/fabric/core",
|
|
"packages/fabric/domain",
|
|
"packages/fabric/sqlite-store",
|
|
"packages/fabric/testing",
|
|
"packages/fabric/validations",
|
|
"packages/templates/domain",
|
|
"packages/templates/lib",
|
|
"apps/syntropy/domain"
|
|
],
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"noImplicitOverride": true,
|
|
"noUncheckedIndexedAccess": true
|
|
},
|
|
"unstable": ["ffi"],
|
|
"lint": {
|
|
"rules": {
|
|
"tags": ["recommended"],
|
|
"exclude": ["no-namespace"]
|
|
}
|
|
}
|
|
}
|