Skip to content

flake.lock: Update #280

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
10 changes: 5 additions & 5 deletions extras/lbf-nix/lbf-typescript.nix
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ lbfTypescriptOpts@{
text = ''
{
"compilerOptions": {
"target": "es2020",
"module": "node16",
"target": "es2020",
"module": "node16",
"moduleResolution": "node16",
"rootDir": "./src",
"declaration": true,
Expand All @@ -75,7 +75,7 @@ lbfTypescriptOpts@{
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
}
}
Expand Down Expand Up @@ -201,7 +201,7 @@ let
];
buildInputs = [
pkgs.jq
pkgs.nodejs-18_x
pkgs.nodejs
];
buildPhase = ''
export HOME=$(mktemp -d)
Expand All @@ -218,7 +218,7 @@ let
# characters. Probably should write a quick check for this..

# Note(jaredponn):
# What is going on here? We create a JQ filter which
# What is going on here? We create a JQ filter which
# - For every `LambdaBuffers/Module/Generated.mts`,
# - Add `exports."./LambdaBuffers/Module/Generated.mts": "./dist/LambdaBuffers/Module/Generated.mts"` to `package.json`

Expand Down
Loading