Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion kits/bigquery-firestore-export/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"extends": "../../tsconfig.base.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"target": "ES2022",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"]
},
"include": ["src"],
Expand Down
1 change: 1 addition & 0 deletions kits/delete-user-data/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"scripts": {
"build": "tsc -b",
"clean": "tsc -b --clean",
"test": "echo \"Warning: tests are not implemented for this package\"",
"deploy": "pnpm build && firebase deploy --only functions",
"serve": "firebase emulators:start --only functions"
},
Expand Down
11 changes: 10 additions & 1 deletion kits/delete-user-data/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"extends": "../../tsconfig.base.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"target": "ES2022",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"]
},
"include": ["src"],
Expand Down
4 changes: 2 additions & 2 deletions kits/firestore-bigquery-export/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"outDir": "lib",
"rootDir": "src",
"target": "ES2022",
"module": "Node16",
"moduleResolution": "Node16",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
Expand Down
4 changes: 4 additions & 0 deletions kits/firestore-bundle-builder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"scripts": {
"build": "tsc -b",
"clean": "tsc -b --clean",
"test": "vitest run",
"deploy": "pnpm build && firebase deploy --only functions",
"serve": "firebase emulators:start --only functions"
},
Expand All @@ -29,5 +30,8 @@
"@google-cloud/storage": "^7.19.0",
"firebase-admin": "^13.2.0",
"firebase-functions": "7.3.2"
},
"devDependencies": {
"vitest": "^4.1.10"
}
}
11 changes: 10 additions & 1 deletion kits/firestore-bundle-builder/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"extends": "../../tsconfig.base.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"target": "ES2022",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"]
},
"include": ["src"],
Expand Down
1 change: 1 addition & 0 deletions kits/firestore-counter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"scripts": {
"build": "tsc -b",
"clean": "tsc -b --clean",
"test": "echo \"Warning: tests are not implemented for this package\"",
"deploy": "pnpm build && firebase deploy --only functions",
"serve": "firebase emulators:start --only functions"
},
Expand Down
11 changes: 10 additions & 1 deletion kits/firestore-counter/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"extends": "../../tsconfig.base.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"target": "ES2022",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"]
},
"include": ["src"],
Expand Down
4 changes: 4 additions & 0 deletions kits/firestore-genai-chatbot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"scripts": {
"build": "tsc -b",
"clean": "tsc -b --clean",
"test": "vitest run",
"deploy": "pnpm build && firebase deploy --only functions",
"serve": "firebase emulators:start --only functions"
},
Expand All @@ -34,5 +35,8 @@
"genkit": "^1.24.0",
"google-gax": "^4.3.2",
"zod": "^3.23.0"
},
"devDependencies": {
"vitest": "^4.1.10"
}
}
11 changes: 10 additions & 1 deletion kits/firestore-genai-chatbot/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"extends": "../../tsconfig.base.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"target": "ES2022",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"]
},
"include": ["src"],
Expand Down
3 changes: 2 additions & 1 deletion kits/firestore-incremental-capture/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
},
"scripts": {
"build": "tsc -b",
"clean": "tsc -b --clean"
"clean": "tsc -b --clean",
"test": "echo \"Warning: tests are not implemented for this package\""
}
}
11 changes: 10 additions & 1 deletion kits/firestore-incremental-capture/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"extends": "../../tsconfig.base.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"target": "ES2022",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"]
},
"include": ["src"],
Expand Down
4 changes: 4 additions & 0 deletions kits/firestore-send-email/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"scripts": {
"build": "tsc -b",
"clean": "tsc -b --clean",
"test": "vitest run",
"deploy": "pnpm build && firebase deploy --only functions",
"serve": "firebase emulators:start --only functions"
},
Expand All @@ -31,5 +32,8 @@
"handlebars": "^4.7.8",
"nodemailer": "^7.0.5",
"zod": "^3.25.76"
},
"devDependencies": {
"vitest": "^4.1.10"
}
}
11 changes: 10 additions & 1 deletion kits/firestore-send-email/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"extends": "../../tsconfig.base.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"target": "ES2022",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"]
},
"include": ["src"],
Expand Down
1 change: 1 addition & 0 deletions kits/firestore-translate-text/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"scripts": {
"build": "tsc -b",
"clean": "tsc -b --clean",
"test": "echo \"Warning: tests are not implemented for this package\"",
"deploy": "pnpm build && firebase deploy --only functions",
"serve": "firebase emulators:start --only functions"
},
Expand Down
11 changes: 10 additions & 1 deletion kits/firestore-translate-text/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"extends": "../../tsconfig.base.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"target": "ES2022",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"]
},
"include": ["src"],
Expand Down
1 change: 1 addition & 0 deletions kits/firestore-vector-search/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"scripts": {
"build": "tsc -b",
"clean": "tsc -b --clean",
"test": "echo \"Warning: tests are not implemented for this package\"",
"deploy": "pnpm build && firebase deploy --only functions",
"serve": "firebase emulators:start --only functions"
},
Expand Down
11 changes: 10 additions & 1 deletion kits/firestore-vector-search/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"extends": "../../tsconfig.base.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"target": "ES2022",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"]
},
"include": ["src"],
Expand Down
11 changes: 10 additions & 1 deletion kits/rtdb-limit-child-nodes/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"extends": "../../tsconfig.base.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"target": "ES2022",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"]
},
"include": ["src"],
Expand Down
4 changes: 3 additions & 1 deletion kits/speech-to-text/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"scripts": {
"build": "tsc -b",
"clean": "tsc -b --clean",
"test": "vitest run",
"deploy": "pnpm build && firebase deploy --only functions",
"serve": "firebase emulators:start --only functions"
},
Expand All @@ -33,6 +34,7 @@
"mkdirp": "^3.0.1"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.27"
"@types/fluent-ffmpeg": "^2.1.27",
"vitest": "^4.1.10"
}
}
11 changes: 10 additions & 1 deletion kits/speech-to-text/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"extends": "../../tsconfig.base.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"target": "ES2022",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"]
},
"include": ["src"],
Expand Down
1 change: 1 addition & 0 deletions kits/storage-resize-images/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"scripts": {
"build": "tsc -b && node -e \"require('fs').copyFileSync('src/placeholder.png','lib/placeholder.png')\"",
"clean": "tsc -b --clean",
"test": "echo \"Warning: tests are not implemented for this package\"",
"deploy": "pnpm build && firebase deploy --only functions",
"serve": "firebase emulators:start --only functions"
},
Expand Down
11 changes: 10 additions & 1 deletion kits/storage-resize-images/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"extends": "../../tsconfig.base.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"target": "ES2022",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"]
},
"include": ["src"],
Expand Down
1 change: 1 addition & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"packages": [
"*",
"kits/*",
"firestore-translate-text/functions",
"rtdb-limit-child-nodes/functions",
"firestore-shorten-urls-bitly/functions",
Expand Down
Loading
Loading