Skip to content

Commit 3c8e2f5

Browse files
authored
Merge pull request #77 from Treevyy/feature/TestDeployToRender
testing render deploy
2 parents 4ad47d5 + bf1a3cd commit 3c8e2f5

File tree

1 file changed

+37
-22
lines changed

1 file changed

+37
-22
lines changed

client/tsconfig.node.json

Lines changed: 37 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,43 @@
11
{
22
"compilerOptions": {
3-
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
3+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
44
"target": "ES2022",
5-
"lib": ["ES2023"],
6-
"module": "ESNext",
7-
"skipLibCheck": true,
5+
"lib": ["ES2023", "DOM"],
6+
"module": "ESNext",
7+
"jsx": "react-jsx",
8+
"moduleResolution": "node",
9+
"skipLibCheck": true,
810

9-
/* Bundler mode */
10-
"moduleResolution": "bundler",
11-
"allowImportingTsExtensions": true,
12-
"isolatedModules": true,
13-
"moduleDetection": "force",
14-
"noEmit": true,
11+
/* Bundler mode */
12+
"allowImportingTsExtensions": true,
13+
"isolatedModules": true,
14+
"moduleDetection": "force",
15+
"noEmit": true,
1516

1617
/* Linting */
1718
"strict": true,
1819
"noUnusedLocals": true,
1920
"noUnusedParameters": true,
2021
"noFallthroughCasesInSwitch": true,
2122
"noUncheckedSideEffectImports": true,
22-
23-
/* ← ADD THESE TWO LINES: */
24-
"baseUrl": "src",
25-
"paths": {
26-
"@/*": ["*"]
27-
}
23+
"baseUrl": ".",
24+
"paths": {
25+
"@/*": ["src/*"]
26+
},
27+
"esModuleInterop": true,
28+
"allowSyntheticDefaultImports": true
2829
},
29-
"include": [
30-
"vite.config.ts",
31-
"src" /* ← ADD THIS LINE so your utils/ folder is picked up */
32-
]
30+
"include": [
31+
"src",
32+
"vite.config.ts"
33+
],
34+
"exclude": [
35+
"node_modules",
36+
"dist"
37+
]
3338
}
3439

40+
3541
// {
3642
// "compilerOptions": {
3743
// "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
@@ -52,7 +58,16 @@
5258
// "noUnusedLocals": true,
5359
// "noUnusedParameters": true,
5460
// "noFallthroughCasesInSwitch": true,
55-
// "noUncheckedSideEffectImports": true
61+
// "noUncheckedSideEffectImports": true,
62+
63+
// /* ← ADD THESE TWO LINES: */
64+
// "baseUrl": "src",
65+
// "paths": {
66+
// "@/*": ["*"]
67+
// }
5668
// },
57-
// "include": ["vite.config.ts"]
69+
// "include": [
70+
// "vite.config.ts",
71+
// "src" /* ← ADD THIS LINE so your utils/ folder is picked up */
72+
// ]
5873
// }

0 commit comments

Comments
 (0)