49 lines
		
	
	
		
			937 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			937 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
	"compilerOptions": {
 | 
						|
		"allowJs": true,
 | 
						|
		"noEmitOnError": false,
 | 
						|
		"noImplicitAny": true,
 | 
						|
		"noImplicitReturns": true,
 | 
						|
		"noUnusedParameters": false,
 | 
						|
		"noUnusedLocals": false,
 | 
						|
		"noFallthroughCasesInSwitch": true,
 | 
						|
		"declaration": false,
 | 
						|
		"sourceMap": false,
 | 
						|
		"target": "es2017",
 | 
						|
		"module": "es2020",
 | 
						|
		"moduleResolution": "node",
 | 
						|
		"allowSyntheticDefaultImports": true,
 | 
						|
		"removeComments": false,
 | 
						|
		"noLib": false,
 | 
						|
		"strict": true,
 | 
						|
		"strictNullChecks": true,
 | 
						|
		"strictPropertyInitialization": false,
 | 
						|
		"experimentalDecorators": true,
 | 
						|
		"emitDecoratorMetadata": true,
 | 
						|
		"resolveJsonModule": true,
 | 
						|
		"isolatedModules": true,
 | 
						|
		"rootDir": "./src",
 | 
						|
		"baseUrl": "./",
 | 
						|
		"paths": {
 | 
						|
			"@/*": [
 | 
						|
				"./src/*"
 | 
						|
			]
 | 
						|
		},
 | 
						|
		"outDir": "./built",
 | 
						|
		"types": [
 | 
						|
			"node"
 | 
						|
		],
 | 
						|
		"typeRoots": [
 | 
						|
			"./node_modules/@types",
 | 
						|
			"./src/@types"
 | 
						|
		],
 | 
						|
		"lib": [
 | 
						|
			"esnext"
 | 
						|
		]
 | 
						|
	},
 | 
						|
	"compileOnSave": false,
 | 
						|
	"include": [
 | 
						|
		"./src/**/*.ts"
 | 
						|
	],
 | 
						|
}
 |