@karmaniverous/smoz 0.2.10 → 0.2.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -570,7 +570,7 @@ interface EnvAttached<GlobalParamsSchema extends ZodObject<ZodRawShape>, StagePa
570
570
  * type R = DeepOverride<A, B>;
571
571
  */
572
572
  type DeepOverride<T, U> = [T] extends [never] ? U : [U] extends [never] ? T : T extends any[] ? U : U extends any[] ? U : T extends object ? U extends object ? {
573
- [K in keyof (T & U)]: K extends keyof U ? DeepOverride<K extends keyof T ? T[K] : never, U[K & keyof U]> : K extends keyof T ? T[K] : never;
573
+ [K in keyof T | keyof U]: K extends keyof U ? DeepOverride<K extends keyof T ? T[K] : never, K extends keyof U ? U[K] : never> : K extends keyof T ? T[K] : never;
574
574
  } : T : U;
575
575
 
576
576
  /** Event type after applying deep schema overrides. */
package/package.json CHANGED
@@ -13,6 +13,7 @@
13
13
  "url": "https://github.com/karmaniverous/smoz/issues"
14
14
  },
15
15
  "dependencies": {
16
+ "@karmaniverous/get-dotenv": "^5.2.6",
16
17
  "@middy/core": "^6.4.5",
17
18
  "@middy/http-content-negotiation": "^6.4.5",
18
19
  "@middy/http-cors": "^6.4.5",
@@ -23,57 +24,56 @@
23
24
  "@middy/http-response-serializer": "^6.4.5",
24
25
  "aws-lambda": "^1.0.7",
25
26
  "chokidar": "^4.0.3",
26
- "commander": "^14.0.1",
27
- "http-errors": "^2.0.0",
27
+ "http-errors": "^2.0.1",
28
28
  "package-directory": "^8.1.0",
29
29
  "radash": "^12.1.1",
30
- "zod": "^4.1.8"
30
+ "zod": "^4.1.13"
31
31
  },
32
32
  "description": "John Galt Services back end.",
33
33
  "devDependencies": {
34
- "@dotenvx/dotenvx": "^1.49.0",
35
- "@eslint/js": "^9.35.0",
36
- "@rollup/plugin-alias": "^5.1.1",
37
- "@rollup/plugin-typescript": "^12.1.4",
38
- "@serverless/typescript": "^4.18.2",
39
- "@types/aws-lambda": "^8.10.152",
34
+ "@dotenvx/dotenvx": "^1.51.1",
35
+ "@eslint/js": "^9.39.1",
36
+ "@rollup/plugin-alias": "^6.0.0",
37
+ "@rollup/plugin-typescript": "^12.3.0",
38
+ "@serverless/typescript": "^4.23.0",
39
+ "@types/aws-lambda": "^8.10.159",
40
40
  "@types/fs-extra": "^11.0.4",
41
41
  "@types/http-errors": "^2.0.5",
42
- "@types/node": "^22",
42
+ "@types/node": "^24",
43
43
  "@types/serverless": "^3.12.27",
44
- "@vitest/coverage-v8": "^3.2.4",
44
+ "@vitest/coverage-v8": "^4.0.13",
45
45
  "auto-changelog": "^2.5.0",
46
+ "eslint": "^9.39.1",
46
47
  "eslint-config-prettier": "^10.1.8",
47
48
  "eslint-plugin-prettier": "^5.5.4",
48
49
  "eslint-plugin-simple-import-sort": "^12.1.1",
49
- "eslint": "^9.35.0",
50
- "fs-extra": "^11.3.1",
51
- "knip": "^5.63.1",
52
- "lefthook": "^1.13.0",
50
+ "fs-extra": "^11.3.2",
51
+ "knip": "^5.70.2",
52
+ "lefthook": "^2.0.4",
53
53
  "prettier": "^3.6.2",
54
- "release-it": "^19.0.4",
55
- "rimraf": "^6.0.1",
54
+ "release-it": "^19.0.6",
55
+ "rimraf": "^6.1.2",
56
+ "rollup": "^4.53.3",
56
57
  "rollup-plugin-dts": "^6.2.3",
57
- "rollup": "^4.50.1",
58
+ "serverless": "^4.25.0",
58
59
  "serverless-apigateway-log-retention": "^1.1.0",
59
60
  "serverless-deployment-bucket": "^1.6.0",
60
61
  "serverless-domain-manager": "^8.0.0",
61
62
  "serverless-offline": "^14.4.0",
62
63
  "serverless-plugin-common-excludes": "^4.0.0",
63
- "serverless": "^4.18.2",
64
- "tsx": "^4.20.5",
65
- "typedoc-plugin-mdn-links": "^5.0.9",
64
+ "tsx": "^4.20.6",
65
+ "typedoc": "^0.28.14",
66
+ "typedoc-plugin-mdn-links": "^5.0.10",
66
67
  "typedoc-plugin-replace-text": "^4.2.0",
67
- "typedoc-plugin-zod": "^1.4.2",
68
- "typedoc": "^0.28.13",
69
- "typescript-eslint": "^8.43.0",
70
- "typescript": "^5.9.2",
68
+ "typedoc-plugin-zod": "^1.4.3",
69
+ "typescript": "^5.9.3",
70
+ "typescript-eslint": "^8.48.0",
71
71
  "vite-tsconfig-paths": "^5.1.4",
72
- "vitest": "^3.2.4",
73
- "zod-openapi": "^5.4.1"
72
+ "vitest": "^4.0.13",
73
+ "zod-openapi": "^5.4.3"
74
74
  },
75
75
  "engines": {
76
- "node": ">=22.19.0 <23"
76
+ "node": ">=22.19.0"
77
77
  },
78
78
  "exports": {
79
79
  ".": {
@@ -142,15 +142,15 @@
142
142
  "npm run knip",
143
143
  "npm run build"
144
144
  ],
145
- "before:npm:release": [
146
- "npx auto-changelog -p",
147
- "npm run docs",
148
- "git add -A"
149
- ],
150
145
  "after:release": [
151
146
  "git switch -c release/${version}",
152
147
  "git push -u origin release/${version}",
153
148
  "git switch ${branchName}"
149
+ ],
150
+ "after:bump": [
151
+ "npx auto-changelog -p",
152
+ "npm run docs",
153
+ "git add CHANGELOG.md"
154
154
  ]
155
155
  },
156
156
  "npm": {
@@ -172,20 +172,19 @@
172
172
  "knip": "knip",
173
173
  "lint": "eslint .",
174
174
  "lint:fix": "eslint --fix .",
175
- "openapi": "tsx src/cli/index.ts register && tsx app/config/openapi && prettier -w app/generated/openapi.json",
176
- "package": "tsx src/cli/index.ts register && serverless package",
175
+ "openapi": "tsx src/cli/index.ts register && tsx src/cli/index.ts openapi",
176
+ "package": "serverless package",
177
177
  "release": "dotenvx run -f .env.local -- release-it",
178
178
  "release:pre": "dotenvx run -f .env.local -- release-it --no-git.requireBranch --github.prerelease --preRelease",
179
179
  "remove": "serverless remove",
180
180
  "smoz": "tsx src/cli/index.ts",
181
- "stan:docs": "typedoc --emit none",
182
181
  "test": "vitest run",
183
182
  "typecheck": "tsx src/cli/index.ts register && tsc -p tsconfig.json --noEmit",
184
183
  "templates:typecheck": "tsx scripts/templates-typecheck.ts",
185
184
  "templates:lint": "eslint --fix -c templates/default/eslint.config.ts \"templates/default/**/*.{ts,tsx,js,jsx}\" \"templates/default/eslint.config.ts\""
186
185
  },
187
186
  "type": "module",
188
- "version": "0.2.10",
187
+ "version": "0.2.11",
189
188
  "volta": {
190
189
  "node": "22.19.0"
191
190
  }
@@ -1,8 +1,8 @@
1
- {
2
- "recommendations": [
3
- "dbaeumer.vscode-eslint",
4
- "esbenp.prettier-vscode",
5
- "redhat.vscode-yaml",
6
- "vitest.explorer"
7
- ]
8
- }
1
+ {
2
+ "recommendations": [
3
+ "dbaeumer.vscode-eslint",
4
+ "esbenp.prettier-vscode",
5
+ "redhat.vscode-yaml",
6
+ "vitest.explorer"
7
+ ]
8
+ }
@@ -1,96 +1,98 @@
1
- # SMOZ App Template
2
-
3
- This template provides a minimal, convention‑friendly baseline for new SMOZ apps:
4
-
5
- - TypeScript configuration (strict, moduleResolution bundler)
6
- - ESLint (flat config) + typescript‑eslint + Prettier
7
- - Vitest baseline config
8
- - TypeDoc baseline config
9
-
10
- ## Conventions
11
-
12
- - Author code lives under:
13
- - `app/config/app.config.ts` — app schemas/config (params, env, http tokens)
14
- - `app/functions/<eventType>/...` (e.g., `app/functions/rest/hello/get`)
15
- - Generated artifacts live under:
16
- - `app/generated/`
17
- - `register.functions.ts` — side‑effect imports of all `lambda.ts`
18
- - `register.openapi.ts` — side‑effect imports of all `openapi.ts`
19
- - `register.serverless.ts` — side‑effect imports of per‑function `serverless.ts` (if any)
20
- - `openapi.json` — OpenAPI document
21
-
22
- ## Getting started
23
-
24
- 1. Install dependencies
25
- - Run: `npm install`
26
- 2. Type checking
27
- - Run: `npm run typecheck`
28
- 3. Linting
29
- - Run: `npm run lint` (or `npm run lint:fix` to auto‑fix)
30
- 4. Tests (baseline suite OK)
31
- - Run: `npm run test`
32
- 5. Docs (TypeDoc baseline loads)
33
- - Run: `npm run docs`
34
- 6. Generate OpenAPI (if your app config and endpoints are present)
35
- - Run: `npm run openapi`
36
-
37
- ## SMOZ CLI — register
38
-
39
- The CLI scans `app/functions/**` for `lambda.ts`, `openapi.ts`, and optional `serverless.ts` and generates side‑effect registration files under `app/generated/`.
40
-
41
- - Build CLI (if packaged locally): `npm run cli:build`
42
- - Register: `npx smoz register`
43
- - Idempotent: rewrites files only when content changes
44
- - Formats output with Prettier when available
45
-
46
- Tip: Commit `app/generated/register.*.ts` so typecheck is stable without running the CLI. Teams often keep `app/generated/openapi.json` untracked in VCS (optional).
47
-
48
- ## Notes
49
-
50
- - HTTP tokens (`rest`, `http`) are configured in your `app.config.ts`. You may widen these tokens per app.
51
- - Keep function modules small and focused:
52
- - `lambda.ts`: define and register function (`app.defineFunction`)
53
- - `handler.ts`: business handler exported via `fn.handler`
54
- - `openapi.ts`: attach OpenAPI operation via `fn.openapi`
55
- - `serverless.ts`: (non‑HTTP only) attach extra events via `fn.serverless`
56
-
57
- ## Next steps
58
-
59
- - Add your first endpoint (e.g., `app/functions/rest/hello/get`)
60
- - Run the CLI register step
61
- - Generate OpenAPI
62
- - Package or deploy with your preferred toolchain
63
-
64
- ## Params used by serverless.ts
65
-
66
- This template references a few params from your app config:
67
-
68
- - Global params (app/config/app.config.ts → global.params)
69
- - `ESB_MINIFY` (boolean) — controls `build.esbuild.minify`
70
- - `ESB_SOURCEMAP` (boolean) — controls `build.esbuild.sourcemap`
71
- - `PROFILE`, `REGION`, `SERVICE_NAME`
72
- - Stage params (app/config/app.config.ts → stage.params.<stage>)
73
- - `DOMAIN_NAME` — used by the custom domain plugin config
74
- - `DOMAIN_CERTIFICATE_ARN` — ACM certificate ARN for the domain
75
- - `STAGE`
76
-
77
- Where these are used:
78
-
79
- - The esbuild block in `serverless.ts` reads `ESB_MINIFY` and `ESB_SOURCEMAP`
80
- to toggle minification and sourcemaps.
81
- - The `customDomain` section in `serverless.ts` reads `DOMAIN_NAME` and
82
- `DOMAIN_CERTIFICATE_ARN`. Update these with your values or remove the
83
- custom domain plugin if not needed.
84
-
85
- ## Path hygiene (cross‑platform)
86
-
87
- Windows uses backslashes in paths, which can leak into string comparisons and generated artifacts. Normalize separators consistently using the helper exported by the toolkit:
88
- ```ts
89
- import { toPosixPath } from '@karmaniverous/smoz';
90
-
91
- // Derive the app root as the parent directory of app/config/
92
- import { fileURLToPath } from 'node:url';
93
- export const APP_ROOT_ABS = toPosixPath(
94
- fileURLToPath(new URL('..', import.meta.url)),
95
- );
96
- ```
1
+ # SMOZ App Template
2
+
3
+ This template provides a minimal, convention‑friendly baseline for new SMOZ apps:
4
+
5
+ - TypeScript configuration (strict, moduleResolution bundler)
6
+ - ESLint (flat config) + typescript‑eslint + Prettier
7
+ - Vitest baseline config
8
+ - TypeDoc baseline config
9
+
10
+ ## Conventions
11
+
12
+ - Author code lives under:
13
+ - `app/config/app.config.ts` — app schemas/config (params, env, http tokens)
14
+ - `app/functions/<eventType>/...` (e.g., `app/functions/rest/hello/get`)
15
+ - Generated artifacts live under:
16
+ - `app/generated/`
17
+ - `register.functions.ts` — side‑effect imports of all `lambda.ts`
18
+ - `register.openapi.ts` — side‑effect imports of all `openapi.ts`
19
+ - `register.serverless.ts` — side‑effect imports of per‑function `serverless.ts` (if any)
20
+ - `openapi.json` — OpenAPI document
21
+
22
+ ## Getting started
23
+
24
+ 1. Install dependencies
25
+ - Run: `npm install`
26
+ 2. Type checking
27
+ - Run: `npm run typecheck`
28
+ 3. Linting
29
+ - Run: `npm run lint` (or `npm run lint:fix` to auto‑fix)
30
+ 4. Tests (baseline suite OK)
31
+ - Run: `npm run test`
32
+ 5. Docs (TypeDoc baseline loads)
33
+ - Run: `npm run docs`
34
+ 6. Generate OpenAPI (if your app config and endpoints are present)
35
+ - Run: `npm run openapi`
36
+
37
+ ## SMOZ CLI — register
38
+
39
+ The CLI scans `app/functions/**` for `lambda.ts`, `openapi.ts`, and optional `serverless.ts` and generates side‑effect registration files under `app/generated/`.
40
+
41
+ - Build CLI (if packaged locally): `npm run cli:build`
42
+ - Register: `npx smoz register`
43
+ - Idempotent: rewrites files only when content changes
44
+ - Formats output with Prettier when available
45
+
46
+ Tip: Commit `app/generated/register.*.ts` so typecheck is stable without running the CLI. Teams often keep `app/generated/openapi.json` untracked in VCS (optional).
47
+
48
+ ## Notes
49
+
50
+ - HTTP tokens (`rest`, `http`) are configured in your `app.config.ts`. You may widen these tokens per app.
51
+ - Keep function modules small and focused:
52
+ - `lambda.ts`: define and register function (`app.defineFunction`)
53
+ - `handler.ts`: business handler exported via `fn.handler`
54
+ - `openapi.ts`: attach OpenAPI operation via `fn.openapi`
55
+ - `serverless.ts`: (non‑HTTP only) attach extra events via `fn.serverless`
56
+
57
+ ## Next steps
58
+
59
+ - Add your first endpoint (e.g., `app/functions/rest/hello/get`)
60
+ - Run the CLI register step
61
+ - Generate OpenAPI
62
+ - Package or deploy with your preferred toolchain
63
+
64
+ ## Params used by serverless.ts
65
+
66
+ This template references a few params from your app config:
67
+
68
+ - Global params (app/config/app.config.ts → global.params)
69
+ - `ESB_MINIFY` (boolean) — controls `build.esbuild.minify`
70
+ - `ESB_SOURCEMAP` (boolean) — controls `build.esbuild.sourcemap`
71
+ - `PROFILE`, `REGION`, `SERVICE_NAME`
72
+ - Stage params (app/config/app.config.ts → stage.params.<stage>)
73
+ - `DOMAIN_NAME` — used by the custom domain plugin config
74
+ - `DOMAIN_CERTIFICATE_ARN` — ACM certificate ARN for the domain
75
+ - `STAGE`
76
+ - `STAGE_NAME` — seeded as `${SERVICE_NAME}-${STAGE}` (not consumed yet)
77
+
78
+ Where these are used:
79
+
80
+ - The esbuild block in `serverless.ts` reads `ESB_MINIFY` and `ESB_SOURCEMAP`
81
+ to toggle minification and sourcemaps.
82
+ - The `customDomain` section in `serverless.ts` reads `DOMAIN_NAME` and
83
+ `DOMAIN_CERTIFICATE_ARN`. Update these with your values or remove the
84
+ custom domain plugin if not needed.
85
+
86
+ ## Path hygiene (cross‑platform)
87
+
88
+ Windows uses backslashes in paths, which can leak into string comparisons and generated artifacts. Normalize separators consistently using the helper exported by the toolkit:
89
+
90
+ ```ts
91
+ import { toPosixPath } from '@karmaniverous/smoz';
92
+
93
+ // Derive the app root as the parent directory of app/config/
94
+ import { fileURLToPath } from 'node:url';
95
+ export const APP_ROOT_ABS = toPosixPath(
96
+ fileURLToPath(new URL('..', import.meta.url)),
97
+ );
98
+ ```
@@ -22,6 +22,7 @@ export const app = App.create({
22
22
  DOMAIN_CERTIFICATE_ARN: z.string(),
23
23
  DOMAIN_NAME: z.string(),
24
24
  STAGE: z.string(),
25
+ STAGE_NAME: z.string(),
25
26
  }),
26
27
  serverless: {
27
28
  httpContextEventMap: {
@@ -49,6 +50,7 @@ export const app = App.create({
49
50
  'arn:aws:acm:us-east-1:000000000000:certificate/dev-placeholder',
50
51
  DOMAIN_NAME: 'api.dev.example.test',
51
52
  STAGE: 'dev',
53
+ STAGE_NAME: 'my-smoz-app-dev',
52
54
  },
53
55
  },
54
56
  envKeys: ['STAGE'],
@@ -1,8 +1,8 @@
1
- {
2
- "openapi": "3.1.0",
3
- "info": { "title": "smoz-app", "version": "0.0.0" },
4
- "servers": [
5
- { "description": "Dev", "url": "http://localhost" }
6
- ],
7
- "paths": {}
8
- }
1
+ {
2
+ "openapi": "3.1.0",
3
+ "info": { "title": "smoz-app", "version": "0.0.0" },
4
+ "servers": [
5
+ { "description": "Dev", "url": "http://localhost" }
6
+ ],
7
+ "paths": {}
8
+ }
@@ -12,7 +12,6 @@ export default [
12
12
  {
13
13
  ignores: [
14
14
  '.serverless/**',
15
- '.stan/**',
16
15
  '**/.tsbuild/**',
17
16
  '**/generated/**',
18
17
  'coverage/**',
@@ -1,42 +1,42 @@
1
- # Dependencies
2
- node_modules/
3
-
4
- # Build outputs and caches
5
- dist/
6
- .tsbuild/
7
- **/.tsbuild/
8
- *.tsbuildinfo
9
- **/.rollup.cache/
10
-
11
- # Serverless packaging
12
- .serverless/
13
-
14
- # Test coverage
15
- coverage/
16
-
17
- # Generated artifacts
18
- # Teams often keep registers tracked for typecheck stability,
19
- # but the OpenAPI JSON is usually untracked.
20
- app/generated/openapi.json
21
-
22
- # Environment files (local only; do not commit secrets)
23
- .env
24
- .env.local
25
- .env.*.local
26
-
27
- # Logs
28
- *.log
29
- npm-debug.log*
30
- yarn-debug.log*
31
- yarn-error.log*
32
- pnpm-debug.log*
33
-
34
- # OS / editor files
35
- .DS_Store
36
- Thumbs.db
37
- .idea/
38
- .vscode/
39
-
40
- # Misc
41
- *.swp
42
- *.swo
1
+ # Dependencies
2
+ node_modules/
3
+
4
+ # Build outputs and caches
5
+ dist/
6
+ .tsbuild/
7
+ **/.tsbuild/
8
+ *.tsbuildinfo
9
+ **/.rollup.cache/
10
+
11
+ # Serverless packaging
12
+ .serverless/
13
+
14
+ # Test coverage
15
+ coverage/
16
+
17
+ # Generated artifacts
18
+ # Teams often keep registers tracked for typecheck stability,
19
+ # but the OpenAPI JSON is usually untracked.
20
+ app/generated/openapi.json
21
+
22
+ # Environment files (local only; do not commit secrets)
23
+ .env
24
+ .env.local
25
+ .env.*.local
26
+
27
+ # Logs
28
+ *.log
29
+ npm-debug.log*
30
+ yarn-debug.log*
31
+ yarn-error.log*
32
+ pnpm-debug.log*
33
+
34
+ # OS / editor files
35
+ .DS_Store
36
+ Thumbs.db
37
+ .idea/
38
+ .vscode/
39
+
40
+ # Misc
41
+ *.swp
42
+ *.swo
@@ -33,16 +33,15 @@
33
33
  },
34
34
  "name": "smoz-template-default",
35
35
  "scripts": {
36
- "register": "smoz register",
37
- "openapi": "smoz register && tsx app/config/openapi && prettier -w app/generated/openapi.json",
38
- "package": "smoz register && serverless package",
39
36
  "dev": "smoz dev",
40
- "dev:offline": "smoz dev --local offline",
41
- "typecheck": "tsc -p tsconfig.json --noEmit",
42
- "lint": "eslint .",
37
+ "docs": "typedoc",
43
38
  "lint:fix": "eslint --fix .",
39
+ "lint": "eslint .",
40
+ "openapi": "smoz openapi",
41
+ "package": "serverless package",
42
+ "register": "smoz register",
44
43
  "test": "vitest run",
45
- "docs": "typedoc"
44
+ "typecheck": "tsc -p tsconfig.json --noEmit"
46
45
  },
47
46
  "type": "module",
48
47
  "version": "0.0.0",
@@ -1,21 +1,21 @@
1
- {
2
- "compilerOptions": {
3
- "allowSyntheticDefaultImports": true,
4
- "emitDeclarationOnly": false,
5
- "exactOptionalPropertyTypes": true,
6
- "module": "esnext",
7
- "moduleDetection": "force",
8
- "moduleResolution": "bundler",
9
- "noEmit": true,
10
- "noUncheckedIndexedAccess": true,
11
- "noUncheckedSideEffectImports": true,
12
- "resolveJsonModule": true,
13
- "rootDir": ".",
14
- "skipLibCheck": true,
15
- "strict": true,
16
- "stripInternal": true,
17
- "target": "esnext",
18
- "types": ["node"],
19
- "verbatimModuleSyntax": true
20
- }
21
- }
1
+ {
2
+ "compilerOptions": {
3
+ "allowSyntheticDefaultImports": true,
4
+ "emitDeclarationOnly": false,
5
+ "exactOptionalPropertyTypes": true,
6
+ "module": "esnext",
7
+ "moduleDetection": "force",
8
+ "moduleResolution": "bundler",
9
+ "noEmit": true,
10
+ "noUncheckedIndexedAccess": true,
11
+ "noUncheckedSideEffectImports": true,
12
+ "resolveJsonModule": true,
13
+ "rootDir": ".",
14
+ "skipLibCheck": true,
15
+ "strict": true,
16
+ "stripInternal": true,
17
+ "target": "esnext",
18
+ "types": ["node"],
19
+ "verbatimModuleSyntax": true
20
+ }
21
+ }
@@ -1,13 +1,13 @@
1
- {
2
- "compilerOptions": {
3
- "baseUrl": ".",
4
- "outDir": ".tsbuild",
5
- "paths": {
6
- "@/*": ["*"]
7
- },
8
- "tsBuildInfoFile": ".tsbuild/tsconfig.tsbuildinfo"
9
- },
10
- "exclude": [".serverless/**", "node_modules/**", "app/generated/**"],
11
- "extends": "./tsconfig.base.json",
12
- "include": ["**/*", "**/*.json"]
13
- }
1
+ {
2
+ "compilerOptions": {
3
+ "baseUrl": ".",
4
+ "outDir": ".tsbuild",
5
+ "paths": {
6
+ "@/*": ["*"]
7
+ },
8
+ "tsBuildInfoFile": ".tsbuild/tsconfig.tsbuildinfo"
9
+ },
10
+ "exclude": [".serverless/**", "node_modules/**", "app/generated/**"],
11
+ "extends": "./tsconfig.base.json",
12
+ "include": ["**/*", "**/*.json"]
13
+ }
@@ -1,3 +1,3 @@
1
- {
2
- "extends": "./tsconfig.json"
1
+ {
2
+ "extends": "./tsconfig.json"
3
3
  }
@@ -1,26 +1,26 @@
1
- {
2
- "compilerOptions": {
3
- "baseUrl": ".",
4
- "outDir": ".tsbuild",
5
- "paths": {
6
- "@/*": ["*"],
7
- "@karmaniverous/smoz": [
8
- "../../dist/index",
9
- "../../dist/index.d.ts"
10
- ]
11
- },
12
- "typeRoots": [
13
- "./types",
14
- "../../node_modules/@types"
15
- ],
16
- "tsBuildInfoFile": ".tsbuild/tsconfig.tsbuildinfo"
17
- },
18
- "exclude": [
19
- ".serverless/**",
20
- "node_modules/**",
21
- "app/generated/**",
22
- "dist/**"
23
- ],
24
- "extends": "./tsconfig.base.json",
25
- "include": ["**/*", "**/*.json"]
1
+ {
2
+ "compilerOptions": {
3
+ "baseUrl": ".",
4
+ "outDir": ".tsbuild",
5
+ "paths": {
6
+ "@/*": ["*"],
7
+ "@karmaniverous/smoz": [
8
+ "../../dist/index",
9
+ "../../dist/index.d.ts"
10
+ ]
11
+ },
12
+ "typeRoots": [
13
+ "./types",
14
+ "../../node_modules/@types"
15
+ ],
16
+ "tsBuildInfoFile": ".tsbuild/tsconfig.tsbuildinfo"
17
+ },
18
+ "exclude": [
19
+ ".serverless/**",
20
+ "node_modules/**",
21
+ "app/generated/**",
22
+ "dist/**"
23
+ ],
24
+ "extends": "./tsconfig.base.json",
25
+ "include": ["**/*", "**/*.json"]
26
26
  }