mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 17:33:08 +02:00
35ec41fc1e
* enhance(backend): テストの高速化 * add ls * 自動的にマージされるようなので不要 * 起動方法を揃える * fix test
52 lines
1 KiB
JSON
52 lines
1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"noEmitOnError": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedParameters": false,
|
|
"noUnusedLocals": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"declaration": false,
|
|
"sourceMap": true,
|
|
"target": "ES2022",
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"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-test",
|
|
"types": [
|
|
"node"
|
|
],
|
|
"typeRoots": [
|
|
"../src/@types",
|
|
"../node_modules/@types",
|
|
"../node_modules"
|
|
],
|
|
"lib": [
|
|
"esnext"
|
|
]
|
|
},
|
|
"compileOnSave": false,
|
|
"include": [
|
|
"./**/*.ts",
|
|
"../src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"../src/**/*.test.ts"
|
|
]
|
|
}
|