46 lines
		
	
	
		
			963 B
		
	
	
	
		
			JSON
		
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			963 B
		
	
	
	
		
			JSON
		
	
	
	
| {
 | |
| 	"compilerOptions": {
 | |
| 		"allowJs": true,
 | |
| 		"noEmitOnError": false,
 | |
| 		"noImplicitAny": true,
 | |
| 		"noImplicitReturns": true,
 | |
| 		"noUnusedParameters": false,
 | |
| 		"noUnusedLocals": false,
 | |
| 		"noFallthroughCasesInSwitch": true,
 | |
| 		"declaration": false,
 | |
| 		"sourceMap": true,
 | |
| 		"target": "ES2022",
 | |
| 		"module": "nodenext",
 | |
| 		"moduleResolution": "nodenext",
 | |
| 		"allowSyntheticDefaultImports": true,
 | |
| 		"removeComments": false,
 | |
| 		"noLib": false,
 | |
| 		"strict": true,
 | |
| 		"strictNullChecks": true,
 | |
| 		"strictPropertyInitialization": false,
 | |
| 		"skipLibCheck": true,
 | |
| 		"experimentalDecorators": true,
 | |
| 		"emitDecoratorMetadata": true,
 | |
| 		"resolveJsonModule": true,
 | |
| 		"isolatedModules": true,
 | |
| 		"baseUrl": "./",
 | |
| 		"paths": {
 | |
| 			"@/*": ["../src/*"]
 | |
| 		},
 | |
| 		"typeRoots": [
 | |
| 			"../node_modules/@types",
 | |
| 			"../src/@types"
 | |
| 		],
 | |
| 		"lib": [
 | |
| 			"esnext"
 | |
| 		],
 | |
| 		"types": ["jest", "node"]
 | |
| 	},
 | |
| 	"compileOnSave": false,
 | |
| 	"include": [
 | |
| 		"./**/*.ts",
 | |
| 		"../src/**/*.test.ts",
 | |
| 		"../src/@types/**/*.ts"
 | |
| 	]
 | |
| }
 |