2016-12-29 07:49:51 +09:00
|
|
|
{
|
2019-11-24 17:09:32 +09:00
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"noEmitOnError": false,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"declaration": false,
|
|
|
|
"sourceMap": true,
|
2023-06-25 21:13:15 +09:00
|
|
|
"target": "ES2022",
|
2022-02-27 11:07:39 +09:00
|
|
|
"module": "es2020",
|
2023-06-25 21:13:15 +09:00
|
|
|
"moduleResolution": "node16",
|
2021-08-19 18:33:41 +09:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2019-11-24 17:09:32 +09:00
|
|
|
"removeComments": false,
|
|
|
|
"noLib": false,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2021-03-23 17:54:43 +09:00
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["../src/*"]
|
|
|
|
},
|
2019-11-24 17:09:32 +09:00
|
|
|
"typeRoots": [
|
2021-03-13 00:18:41 +09:00
|
|
|
"../node_modules/@types",
|
|
|
|
"../src/@types"
|
2020-05-23 23:21:09 +09:00
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"esnext"
|
2022-09-18 03:27:08 +09:00
|
|
|
],
|
2023-02-26 11:28:05 +09:00
|
|
|
"types": ["jest", "node"]
|
2019-11-24 17:09:32 +09:00
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"include": [
|
2023-02-24 16:10:48 +09:00
|
|
|
"./**/*.ts",
|
2023-02-26 11:28:05 +09:00
|
|
|
"../src/**/*.test.ts",
|
2023-06-25 21:13:15 +09:00
|
|
|
"../src/@types/**/*.ts"
|
2019-11-24 17:09:32 +09:00
|
|
|
]
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|