52 lines
		
	
	
		
			1018 B
		
	
	
	
		
			JSON
		
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1018 B
		
	
	
	
		
			JSON
		
	
	
	
| {
 | |
| 	"compilerOptions": {
 | |
| 		"allowJs": true,
 | |
| 		"noEmitOnError": true,
 | |
| 		"noImplicitAny": true,
 | |
| 		"noImplicitReturns": true,
 | |
| 		"noUnusedParameters": false,
 | |
| 		"noUnusedLocals": false,
 | |
| 		"noFallthroughCasesInSwitch": true,
 | |
| 		"declaration": false,
 | |
| 		"sourceMap": false,
 | |
| 		"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,
 | |
| 		"rootDir": "./src",
 | |
| 		"baseUrl": "./",
 | |
| 		"paths": {
 | |
| 			"@/*": ["./src/*"]
 | |
| 		},
 | |
| 		"outDir": "./built",
 | |
| 		"types": [
 | |
| 			"node"
 | |
| 		],
 | |
| 		"typeRoots": [
 | |
| 			"./src/@types",
 | |
| 			"./node_modules/@types",
 | |
| 			"./node_modules"
 | |
| 		],
 | |
| 		"lib": [
 | |
| 			"esnext"
 | |
| 		]
 | |
| 	},
 | |
| 	"compileOnSave": false,
 | |
| 	"include": [
 | |
| 		"./src/**/*.ts"
 | |
| 	],
 | |
| 	"exclude": [
 | |
| 		"./src/**/*.test.ts"
 | |
| 	]
 | |
| }
 |