Spaces:
Running
Running
Ravindra Bharathi commited on
Commit ·
5cfba94
1
Parent(s): 273b520
fix build error
Browse files- web/disk_tsconfig.json +0 -0
- web/head_tsconfig.json +0 -0
- web/head_utf8.json +35 -0
- web/tsconfig-old.json +52 -0
- web/tsconfig.json +26 -6
web/disk_tsconfig.json
ADDED
|
Binary file (1.44 kB). View file
|
|
|
web/head_tsconfig.json
ADDED
|
Binary file (1.44 kB). View file
|
|
|
web/head_utf8.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"compilerOptions": {
|
| 3 |
+
"target": "ES2017",
|
| 4 |
+
"lib": ["dom", "dom.iterable", "esnext"],
|
| 5 |
+
"allowJs": true,
|
| 6 |
+
"skipLibCheck": true,
|
| 7 |
+
"strict": true,
|
| 8 |
+
"noEmit": true,
|
| 9 |
+
"esModuleInterop": true,
|
| 10 |
+
"module": "esnext",
|
| 11 |
+
"moduleResolution": "bundler",
|
| 12 |
+
"resolveJsonModule": true,
|
| 13 |
+
"isolatedModules": true,
|
| 14 |
+
"jsx": "react-jsx",
|
| 15 |
+
"incremental": true,
|
| 16 |
+
"plugins": [
|
| 17 |
+
{
|
| 18 |
+
"name": "next"
|
| 19 |
+
}
|
| 20 |
+
],
|
| 21 |
+
"paths": {
|
| 22 |
+
"@/*": ["./*"]
|
| 23 |
+
},
|
| 24 |
+
"baseUrl": "."
|
| 25 |
+
},
|
| 26 |
+
"include": [
|
| 27 |
+
"next-env.d.ts",
|
| 28 |
+
"**/*.ts",
|
| 29 |
+
"**/*.tsx",
|
| 30 |
+
".next/types/**/*.ts",
|
| 31 |
+
".next/dev/types/**/*.ts",
|
| 32 |
+
"**/*.mts"
|
| 33 |
+
],
|
| 34 |
+
"exclude": ["node_modules"]
|
| 35 |
+
}
|
web/tsconfig-old.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"compilerOptions": {
|
| 3 |
+
"target": "ES2017",
|
| 4 |
+
"lib": [
|
| 5 |
+
"dom",
|
| 6 |
+
"dom.iterable",
|
| 7 |
+
"esnext"
|
| 8 |
+
],
|
| 9 |
+
"allowJs": true,
|
| 10 |
+
"skipLibCheck": true,
|
| 11 |
+
"strict": true,
|
| 12 |
+
"noEmit": true,
|
| 13 |
+
"esModuleInterop": true,
|
| 14 |
+
"module": "esnext",
|
| 15 |
+
"moduleResolution": "bundler",
|
| 16 |
+
"resolveJsonModule": true,
|
| 17 |
+
"isolatedModules": true,
|
| 18 |
+
"jsx": "react-jsx",
|
| 19 |
+
"incremental": true,
|
| 20 |
+
"plugins": [
|
| 21 |
+
{
|
| 22 |
+
"name": "next"
|
| 23 |
+
}
|
| 24 |
+
],
|
| 25 |
+
"paths": {
|
| 26 |
+
"@/lib/*": [
|
| 27 |
+
"./lib/*"
|
| 28 |
+
],
|
| 29 |
+
"@/components/*": [
|
| 30 |
+
"./components/*"
|
| 31 |
+
],
|
| 32 |
+
"@/hooks/*": [
|
| 33 |
+
"./hooks/*"
|
| 34 |
+
],
|
| 35 |
+
"@/*": [
|
| 36 |
+
"./*"
|
| 37 |
+
]
|
| 38 |
+
},
|
| 39 |
+
"baseUrl": "."
|
| 40 |
+
},
|
| 41 |
+
"include": [
|
| 42 |
+
"next-env.d.ts",
|
| 43 |
+
"**/*.ts",
|
| 44 |
+
"**/*.tsx",
|
| 45 |
+
".next/types/**/*.ts",
|
| 46 |
+
".next/dev/types/**/*.ts",
|
| 47 |
+
"**/*.mts"
|
| 48 |
+
],
|
| 49 |
+
"exclude": [
|
| 50 |
+
"node_modules"
|
| 51 |
+
]
|
| 52 |
+
}
|
web/tsconfig.json
CHANGED
|
@@ -1,7 +1,11 @@
|
|
| 1 |
{
|
| 2 |
"compilerOptions": {
|
| 3 |
"target": "ES2017",
|
| 4 |
-
"lib": [
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
"allowJs": true,
|
| 6 |
"skipLibCheck": true,
|
| 7 |
"strict": true,
|
|
@@ -18,10 +22,24 @@
|
|
| 18 |
"name": "next"
|
| 19 |
}
|
| 20 |
],
|
|
|
|
| 21 |
"paths": {
|
| 22 |
-
"@/*": [
|
| 23 |
-
|
| 24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
},
|
| 26 |
"include": [
|
| 27 |
"next-env.d.ts",
|
|
@@ -31,5 +49,7 @@
|
|
| 31 |
".next/dev/types/**/*.ts",
|
| 32 |
"**/*.mts"
|
| 33 |
],
|
| 34 |
-
"exclude": [
|
| 35 |
-
|
|
|
|
|
|
|
|
|
| 1 |
{
|
| 2 |
"compilerOptions": {
|
| 3 |
"target": "ES2017",
|
| 4 |
+
"lib": [
|
| 5 |
+
"dom",
|
| 6 |
+
"dom.iterable",
|
| 7 |
+
"esnext"
|
| 8 |
+
],
|
| 9 |
"allowJs": true,
|
| 10 |
"skipLibCheck": true,
|
| 11 |
"strict": true,
|
|
|
|
| 22 |
"name": "next"
|
| 23 |
}
|
| 24 |
],
|
| 25 |
+
"baseUrl": ".",
|
| 26 |
"paths": {
|
| 27 |
+
"@/lib/*": [
|
| 28 |
+
"./lib/*"
|
| 29 |
+
],
|
| 30 |
+
"@/components/*": [
|
| 31 |
+
"./components/*"
|
| 32 |
+
],
|
| 33 |
+
"@/hooks/*": [
|
| 34 |
+
"./hooks/*"
|
| 35 |
+
],
|
| 36 |
+
"@/app/*": [
|
| 37 |
+
"./app/*"
|
| 38 |
+
],
|
| 39 |
+
"@/*": [
|
| 40 |
+
"./*"
|
| 41 |
+
]
|
| 42 |
+
}
|
| 43 |
},
|
| 44 |
"include": [
|
| 45 |
"next-env.d.ts",
|
|
|
|
| 49 |
".next/dev/types/**/*.ts",
|
| 50 |
"**/*.mts"
|
| 51 |
],
|
| 52 |
+
"exclude": [
|
| 53 |
+
"node_modules"
|
| 54 |
+
]
|
| 55 |
+
}
|