/ packages / webui / tsconfig.json
tsconfig.json
 1  {
 2  	"compilerOptions": {
 3  		"allowJs": false,
 4  		"declaration": true,
 5  		"emitDecoratorMetadata": true,
 6  		"esModuleInterop": true,
 7  		"experimentalDecorators": true,
 8  		"forceConsistentCasingInFileNames": true,
 9  		"jsx": "react",
10  		"lib": [
11  			"esnext",
12  			"dom",
13  			"dom.iterable"
14  		],
15  		"moduleResolution": "node",
16  		"noImplicitAny": true,
17  		"noImplicitReturns": true,
18  		"noImplicitThis": true,
19  		"noUnusedLocals": true,
20  		"skipLibCheck": true,
21  		"sourceMap": true,
22  		"strictNullChecks": true,
23  		"resolveJsonModule": true,
24  		"module": "esnext",
25  		"target": "ESNext",
26  		"downlevelIteration": true,
27  		"isolatedModules": true
28  	},
29  	"include": [
30  		"src",
31  		"typings.d.ts",
32  		"vite.config.ts",
33  		".eslintrc.js",
34  		".prettierrc.js"
35  	]
36  }