mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 23:55:58 +09:00
18dbcfa0b0
* fix(server): notes/createのバリデーションが効いていない Fix #10079 Co-Authored-By: mei23 <m@m544.net> * anyOf内にバリデーションを書いても最初の一つしかチェックされない * ✌️ * wip * wip * ✌️ * RequiredProp * Revert "RequiredProp" This reverts commit 74693900119a590263106fa3adefd008d69ce80c. * add api:notes/create * fix lint * text * ✌️ * improve readability --------- Co-authored-by: mei23 <m@m544.net> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
45 lines
933 B
JSON
45 lines
933 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"noEmitOnError": false,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedParameters": false,
|
|
"noUnusedLocals": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"declaration": false,
|
|
"sourceMap": true,
|
|
"target": "es2021",
|
|
"module": "es2020",
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"removeComments": false,
|
|
"noLib": false,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": false,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["../src/*"]
|
|
},
|
|
"typeRoots": [
|
|
"../node_modules/@types",
|
|
"../src/@types"
|
|
],
|
|
"lib": [
|
|
"esnext"
|
|
],
|
|
"types": ["jest", "node"]
|
|
},
|
|
"compileOnSave": false,
|
|
"include": [
|
|
"./**/*.ts",
|
|
"../src/**/*.test.ts",
|
|
"../src/@types/**/*.ts",
|
|
]
|
|
}
|