/ frontend / tsconfig.node.json
tsconfig.node.json
 1  {
 2  	"compilerOptions": {
 3  		"target": "ESNext",
 4  		"lib": ["ESNext"],
 5  		"types": ["node"],
 6  		"module": "ESNext",
 7  		"skipLibCheck": true,
 8  
 9  		/* Bundler mode */
10  		"moduleResolution": "bundler",
11  		"allowImportingTsExtensions": true,
12  		"isolatedModules": true,
13  		"moduleDetection": "force",
14  		"noEmit": true,
15  
16  		/* Linting */
17  		"strict": true,
18  		"noUnusedLocals": true,
19  		"noUnusedParameters": true,
20  		"noFallthroughCasesInSwitch": true
21  	},
22  	"include": ["vite.config.ts"]
23  }