mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-31 13:34:12 +00:00 
			
		
		
		
	* refactor(backend): use node16 for moduleResolution
* update deps
* Update tsconfig.json
* ✌️
* revive KEYWORD
* restore strict-event-emitter-types dependency
* restore ms dependency
* cancel redundant import reorder
* fix
* Delete ms.ts
* remove rndstr
---------
Co-authored-by: Kagami Sascha Rosylight <saschanaz@outlook.com>
		
	
			
		
			
				
	
	
		
			52 lines
		
	
	
	
		
			1,014 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
	
		
			1,014 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
| 	"compilerOptions": {
 | |
| 		"allowJs": true,
 | |
| 		"noEmitOnError": false,
 | |
| 		"noImplicitAny": false,
 | |
| 		"noImplicitReturns": true,
 | |
| 		"noUnusedParameters": false,
 | |
| 		"noUnusedLocals": true,
 | |
| 		"noFallthroughCasesInSwitch": true,
 | |
| 		"declaration": false,
 | |
| 		"sourceMap": false,
 | |
| 		"target": "ES2022",
 | |
| 		"module": "esnext",
 | |
| 		"moduleResolution": "node16",
 | |
| 		"removeComments": false,
 | |
| 		"noLib": false,
 | |
| 		"strict": true,
 | |
| 		"strictNullChecks": true,
 | |
| 		"experimentalDecorators": true,
 | |
| 		"resolveJsonModule": true,
 | |
| 		"allowSyntheticDefaultImports": true,
 | |
| 		"isolatedModules": true,
 | |
| 		"useDefineForClassFields": true,
 | |
| 		"baseUrl": ".",
 | |
| 		"paths": {
 | |
| 			"@/*": ["./src/*"]
 | |
| 		},
 | |
| 		"typeRoots": [
 | |
| 			"node_modules/@types",
 | |
| 			"node_modules/@vue-macros",
 | |
| 			"@types"
 | |
| 		],
 | |
| 		"types": [
 | |
| 			"vite/client",
 | |
| 			"reactivity-transform/macros-global"
 | |
| 		],
 | |
| 		"lib": [
 | |
| 			"esnext",
 | |
| 			"dom"
 | |
| 		],
 | |
| 		"jsx": "preserve"
 | |
| 	},
 | |
| 	"compileOnSave": false,
 | |
| 	"include": [
 | |
| 		".eslintrc.js",
 | |
| 		"./**/*.ts",
 | |
| 		"./**/*.vue"
 | |
| 	],
 | |
| 	"exclude": [
 | |
| 		".storybook/**/*"
 | |
| 	]
 | |
| }
 |