* 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
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
	"compilerOptions": {
 | 
						|
		"allowJs": true,
 | 
						|
		"noEmitOnError": false,
 | 
						|
		"noImplicitAny": false,
 | 
						|
		"noImplicitReturns": true,
 | 
						|
		"noUnusedParameters": false,
 | 
						|
		"noUnusedLocals": false,
 | 
						|
		"noFallthroughCasesInSwitch": true,
 | 
						|
		"declaration": false,
 | 
						|
		"sourceMap": false,
 | 
						|
		"target": "ES2022",
 | 
						|
		"module": "ES2022",
 | 
						|
		"moduleResolution": "Bundler",
 | 
						|
		"removeComments": false,
 | 
						|
		"noLib": false,
 | 
						|
		"strict": true,
 | 
						|
		"strictNullChecks": true,
 | 
						|
		"experimentalDecorators": true,
 | 
						|
		"resolveJsonModule": true,
 | 
						|
		"allowSyntheticDefaultImports": true,
 | 
						|
		"isolatedModules": true,
 | 
						|
		"useDefineForClassFields": true,
 | 
						|
		"verbatimModuleSyntax": true,
 | 
						|
		"baseUrl": ".",
 | 
						|
		"paths": {
 | 
						|
			"@/*": ["./src/*"],
 | 
						|
			"@@/*": ["../frontend-shared/*"]
 | 
						|
		},
 | 
						|
		"typeRoots": [
 | 
						|
			"./@types",
 | 
						|
			"./node_modules/@types",
 | 
						|
			"./node_modules/@vue-macros",
 | 
						|
			"./node_modules"
 | 
						|
		],
 | 
						|
		"types": [
 | 
						|
			"vite/client"
 | 
						|
		],
 | 
						|
		"lib": [
 | 
						|
			"esnext",
 | 
						|
			"dom",
 | 
						|
			"dom.iterable"
 | 
						|
		],
 | 
						|
		"jsx": "preserve"
 | 
						|
	},
 | 
						|
	"compileOnSave": false,
 | 
						|
	"include": [
 | 
						|
		"./src/**/*.ts",
 | 
						|
		"./src/**/*.vue",
 | 
						|
		"./@types/**/*.ts"
 | 
						|
	],
 | 
						|
	"exclude": [
 | 
						|
		".storybook/**/*"
 | 
						|
	]
 | 
						|
}
 |