ugly-app 0.1.10 → 0.1.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/cli/dev.js +1 -1
- package/package.json +1 -1
- package/templates/tsconfig.json +22 -0
package/dist/cli/dev.js
CHANGED
|
@@ -110,7 +110,7 @@ export async function runDev() {
|
|
|
110
110
|
'--prefix-colors green,cyan,yellow,magenta',
|
|
111
111
|
'--kill-others-on-fail',
|
|
112
112
|
'--handle-input',
|
|
113
|
-
q('npx tsx --env-file=.env
|
|
113
|
+
q('npx tsx watch --env-file=.env server/index.ts'),
|
|
114
114
|
q('npx vite'),
|
|
115
115
|
q(noFail('npx tsc --watch --noEmit')),
|
|
116
116
|
q(noFail('npx esw --watch --changed --ext .ts,.tsx src server shared')),
|
package/package.json
CHANGED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2022",
|
|
4
|
+
"module": "ESNext",
|
|
5
|
+
"moduleResolution": "bundler",
|
|
6
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
7
|
+
"types": ["vite/client"],
|
|
8
|
+
"jsx": "react-jsx",
|
|
9
|
+
"strict": true,
|
|
10
|
+
"noUncheckedIndexedAccess": true,
|
|
11
|
+
"exactOptionalPropertyTypes": true,
|
|
12
|
+
"noImplicitOverride": true,
|
|
13
|
+
"noFallthroughCasesInSwitch": true,
|
|
14
|
+
"forceConsistentCasingInFileNames": true,
|
|
15
|
+
"skipLibCheck": true,
|
|
16
|
+
"outDir": "./dist",
|
|
17
|
+
"rootDir": "./",
|
|
18
|
+
"sourceMap": true
|
|
19
|
+
},
|
|
20
|
+
"include": ["src", "shared", "server", "client"],
|
|
21
|
+
"exclude": ["node_modules", "dist"]
|
|
22
|
+
}
|