mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 06:54:12 +00:00 
			
		
		
		
	* fix: ビルドが遅いパッケージのビルド速度を改善 * dependenciesの整理 * fix ci * ビルド開始時に古いファイルを消す * fix ci * fix ci
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			617 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			617 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
	"$schema": "https://json.schemastore.org/tsconfig",
 | 
						|
	"compilerOptions": {
 | 
						|
		"target": "ES2022",
 | 
						|
		"module": "nodenext",
 | 
						|
		"moduleResolution": "nodenext",
 | 
						|
		"declaration": true,
 | 
						|
		"declarationMap": true,
 | 
						|
		"sourceMap": false,
 | 
						|
		"outDir": "./built/",
 | 
						|
		"removeComments": true,
 | 
						|
		"strict": true,
 | 
						|
		"strictFunctionTypes": true,
 | 
						|
		"strictNullChecks": true,
 | 
						|
		"experimentalDecorators": true,
 | 
						|
		"noImplicitReturns": true,
 | 
						|
		"esModuleInterop": true,
 | 
						|
		"typeRoots": [
 | 
						|
			"./node_modules/@types"
 | 
						|
		],
 | 
						|
		"lib": [
 | 
						|
			"esnext",
 | 
						|
			"dom"
 | 
						|
		]
 | 
						|
	},
 | 
						|
	"include": [
 | 
						|
		"src/**/*"
 | 
						|
	],
 | 
						|
	"exclude": [
 | 
						|
		"node_modules",
 | 
						|
		"test/**/*"
 | 
						|
	]
 | 
						|
}
 |