* wip * wip * wip * wip * revert unnecessary changes * wip * refactor(frontend): enforce verbatimModuleSyntax * fix * refactor(frontend-shared): enforce verbatimModuleSyntax * wip * refactor(frontend-embed): enforce verbatimModuleSyntax * enforce consistent-type-imports * fix lint config * attemt to fix ci * fix lint * fix * fix * fix
		
			
				
	
	
		
			43 lines
		
	
	
		
			789 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			789 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
	"$schema": "https://json.schemastore.org/tsconfig",
 | 
						|
	"compilerOptions": {
 | 
						|
		"target": "ES2022",
 | 
						|
		"module": "nodenext",
 | 
						|
		"moduleResolution": "nodenext",
 | 
						|
		"declaration": true,
 | 
						|
		"declarationMap": true,
 | 
						|
		"sourceMap": false,
 | 
						|
		"outDir": "./js-built/",
 | 
						|
		"removeComments": true,
 | 
						|
		"resolveJsonModule": true,
 | 
						|
		"strict": true,
 | 
						|
		"strictFunctionTypes": true,
 | 
						|
		"strictNullChecks": true,
 | 
						|
		"experimentalDecorators": true,
 | 
						|
		"noImplicitReturns": true,
 | 
						|
		"esModuleInterop": true,
 | 
						|
		"verbatimModuleSyntax": true,
 | 
						|
		"baseUrl": ".",
 | 
						|
		"paths": {
 | 
						|
			"@/*": ["./*"],
 | 
						|
			"@@/*": ["./*"]
 | 
						|
		},
 | 
						|
		"typeRoots": [
 | 
						|
			"./@types",
 | 
						|
			"./node_modules/@types"
 | 
						|
		],
 | 
						|
		"lib": [
 | 
						|
			"esnext",
 | 
						|
			"dom"
 | 
						|
		]
 | 
						|
	},
 | 
						|
	"include": [
 | 
						|
		"@types/**/*.ts",
 | 
						|
		"js/**/*"
 | 
						|
	],
 | 
						|
	"exclude": [
 | 
						|
		"node_modules",
 | 
						|
		"test/**/*"
 | 
						|
	]
 | 
						|
}
 |