create-better-t-stack 2.9.8 → 2.9.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-better-t-stack",
3
- "version": "2.9.8",
3
+ "version": "2.9.9",
4
4
  "description": "A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -15,7 +15,9 @@
15
15
  "expo-env.d.ts",
16
16
  "nativewind-env.d.ts"
17
17
  ],
18
+ {{#unless (or (eq backend "convex") (eq backend "none"))}}
18
19
  "references": [{
19
20
  "path": "../server"
20
21
  }]
22
+ {{/unless}}
21
23
  }
@@ -9,7 +9,9 @@
9
9
  }
10
10
  },
11
11
  "include": ["**/*.ts", "**/*.tsx", ".expo/types/**/*.ts", "expo-env.d.ts"],
12
+ {{#unless (or (eq backend "convex") (eq backend "none"))}}
12
13
  "references": [{
13
14
  "path": "../server"
14
15
  }]
16
+ {{/unless}}
15
17
  }
@@ -1,7 +1,9 @@
1
1
  {
2
2
  // https://nuxt.com/docs/guide/concepts/typescript
3
3
  "extends": "./.nuxt/tsconfig.json",
4
+ {{#unless (or (eq backend "convex") (eq backend "none"))}}
4
5
  "references": [{
5
6
  "path": "../server"
6
7
  }]
8
+ {{/unless}}
7
9
  }
@@ -25,7 +25,9 @@
25
25
  },
26
26
  "include": ["./next-env.d.ts", "./**/*.ts", "./**/*.tsx", "./.next/types/**/*.ts"],
27
27
  "exclude": ["./node_modules"],
28
+ {{#unless (or (eq backend "convex") (eq backend "none"))}}
28
29
  "references": [{
29
30
  "path": "../server"
30
31
  }]
32
+ {{/unless}}
31
33
  }
@@ -24,7 +24,9 @@
24
24
  "skipLibCheck": true,
25
25
  "strict": true
26
26
  },
27
+ {{#unless (or (eq backend "convex") (eq backend "none"))}}
27
28
  "references": [{
28
29
  "path": "../server"
29
30
  }]
31
+ {{/unless}}
30
32
  }
@@ -15,7 +15,9 @@
15
15
  "@/*": ["./src/*"]
16
16
  }
17
17
  },
18
+ {{#unless (or (eq backend "convex") (eq backend "none"))}}
18
19
  "references": [{
19
20
  "path": "../server"
20
21
  }]
22
+ {{/unless}}
21
23
  }
@@ -25,7 +25,9 @@
25
25
  "@/*": ["./src/*"]
26
26
  }
27
27
  },
28
+ {{#unless (or (eq backend "convex") (eq backend "none"))}}
28
29
  "references": [{
29
30
  "path": "../server"
30
31
  }]
32
+ {{/unless}}
31
33
  }
@@ -26,7 +26,9 @@
26
26
  "@/*": ["./src/*"]
27
27
  }
28
28
  },
29
+ {{#unless (or (eq backend "convex") (eq backend "none"))}}
29
30
  "references": [{
30
31
  "path": "../server"
31
32
  }]
33
+ {{/unless}}
32
34
  }
@@ -11,9 +11,11 @@
11
11
  "strict": true,
12
12
  "moduleResolution": "bundler"
13
13
  },
14
- "references": [{
14
+ {{#unless (or (eq backend "convex") (eq backend "none"))}}
15
+ "references": [{
15
16
  "path": "../server"
16
17
  }]
18
+ {{/unless}}
17
19
  // Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
18
20
  // except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
19
21
  //