30 lines
		
	
	
		
			614 B
		
	
	
	
		
			JSON
		
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			614 B
		
	
	
	
		
			JSON
		
	
	
	
| {
 | |
| 	"$schema": "https://json.schemastore.org/tsconfig",
 | |
| 	"compilerOptions": {
 | |
| 		"target": "ES2022",
 | |
| 		"module": "nodenext",
 | |
| 		"moduleResolution": "nodenext",
 | |
| 		"declaration": true,
 | |
| 		"declarationMap": true,
 | |
| 		"sourceMap": false,
 | |
| 		"noEmit": true,
 | |
| 		"removeComments": true,
 | |
| 		"resolveJsonModule": true,
 | |
| 		"strict": true,
 | |
| 		"strictFunctionTypes": true,
 | |
| 		"strictNullChecks": true,
 | |
| 		"experimentalDecorators": true,
 | |
| 		"noImplicitReturns": true,
 | |
| 		"esModuleInterop": true,
 | |
| 		"verbatimModuleSyntax": true,
 | |
| 		"baseUrl": ".",
 | |
| 		"typeRoots": [
 | |
| 			"./@types",
 | |
| 			"./node_modules/@types"
 | |
| 		],
 | |
| 		"lib": [
 | |
| 			"esnext"
 | |
| 		]
 | |
| 	}
 | |
| }
 |