* fix(server): notes/createのバリデーションが効いていない
Fix #10079
Co-Authored-By: mei23 <m@m544.net>
* anyOf内にバリデーションを書いても最初の一つしかチェックされない
* ✌️
* wip
* wip
* ✌️
* RequiredProp
* Revert "RequiredProp"
This reverts commit 7469390011.
* add api:notes/create
* fix lint
* text
* ✌️
* improve readability
---------
Co-authored-by: mei23 <m@m544.net>
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			991 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			991 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
	"compilerOptions": {
 | 
						|
		"allowJs": true,
 | 
						|
		"noEmitOnError": true,
 | 
						|
		"noImplicitAny": true,
 | 
						|
		"noImplicitReturns": true,
 | 
						|
		"noUnusedParameters": false,
 | 
						|
		"noUnusedLocals": false,
 | 
						|
		"noFallthroughCasesInSwitch": true,
 | 
						|
		"declaration": false,
 | 
						|
		"sourceMap": false,
 | 
						|
		"target": "es2021",
 | 
						|
		"module": "esnext",
 | 
						|
		"moduleResolution": "node",
 | 
						|
		"allowSyntheticDefaultImports": true,
 | 
						|
		"removeComments": false,
 | 
						|
		"noLib": false,
 | 
						|
		"strict": true,
 | 
						|
		"strictNullChecks": true,
 | 
						|
		"strictPropertyInitialization": false,
 | 
						|
		"skipLibCheck": true,
 | 
						|
		"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"
 | 
						|
	],
 | 
						|
	"exclude": [
 | 
						|
		"./src/**/*.test.ts"
 | 
						|
	]
 | 
						|
}
 |