Upload 2 files
Browse files- frontend/package.json +2 -1
- frontend/tsconfig.node.json +19 -0
frontend/package.json
CHANGED
@@ -5,7 +5,8 @@
|
|
5 |
"type": "module",
|
6 |
"scripts": {
|
7 |
"dev": "vite",
|
8 |
-
"build": "
|
|
|
9 |
"preview": "vite preview",
|
10 |
"build-only": "vite build",
|
11 |
"type-check": "vue-tsc --build --force",
|
|
|
5 |
"type": "module",
|
6 |
"scripts": {
|
7 |
"dev": "vite",
|
8 |
+
"build": "vite build",
|
9 |
+
"build-with-check": "run-p type-check \"build-only {@}\" --",
|
10 |
"preview": "vite preview",
|
11 |
"build-only": "vite build",
|
12 |
"type-check": "vue-tsc --build --force",
|
frontend/tsconfig.node.json
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"compilerOptions": {
|
3 |
+
"composite": true,
|
4 |
+
"noEmit": true,
|
5 |
+
"module": "ESNext",
|
6 |
+
"moduleResolution": "Bundler",
|
7 |
+
"types": ["node"],
|
8 |
+
"allowSyntheticDefaultImports": true,
|
9 |
+
"strict": true,
|
10 |
+
"target": "ES2022"
|
11 |
+
},
|
12 |
+
"include": [
|
13 |
+
"vite.config.*",
|
14 |
+
"vitest.config.*",
|
15 |
+
"cypress.config.*",
|
16 |
+
"nightwatch.conf.*",
|
17 |
+
"playwright.config.*"
|
18 |
+
]
|
19 |
+
}
|