2016-12-29 07:49:51 +09:00
|
|
|
{
|
2019-11-24 17:09:32 +09:00
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
2023-02-22 15:02:39 +09:00
|
|
|
"noEmitOnError": true,
|
2019-11-24 17:09:32 +09:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedParameters": false,
|
2021-03-24 11:05:37 +09:00
|
|
|
"noUnusedLocals": false,
|
2019-11-24 17:09:32 +09:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"declaration": false,
|
2021-11-12 02:02:25 +09:00
|
|
|
"sourceMap": false,
|
2023-06-25 21:13:15 +09:00
|
|
|
"target": "ES2022",
|
|
|
|
"module": "ESNext",
|
|
|
|
"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,
|
2022-09-24 06:45:44 +09:00
|
|
|
"skipLibCheck": true,
|
2019-11-24 17:09:32 +09:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2021-11-12 02:02:25 +09:00
|
|
|
"rootDir": "./src",
|
2021-03-23 17:24:40 +09:00
|
|
|
"baseUrl": "./",
|
2021-03-23 17:30:14 +09:00
|
|
|
"paths": {
|
2023-02-26 11:28:05 +09:00
|
|
|
"@/*": ["./src/*"]
|
2021-03-23 17:30:14 +09:00
|
|
|
},
|
2021-11-12 02:02:25 +09:00
|
|
|
"outDir": "./built",
|
2022-04-23 12:37:44 +09:00
|
|
|
"types": [
|
|
|
|
"node"
|
|
|
|
],
|
2019-11-24 17:09:32 +09:00
|
|
|
"typeRoots": [
|
2021-11-12 02:02:25 +09:00
|
|
|
"./node_modules/@types",
|
2022-02-03 21:20:25 +09:00
|
|
|
"./src/@types"
|
2020-05-23 23:21:09 +09:00
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"esnext"
|
2019-11-24 17:09:32 +09:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"include": [
|
2021-11-12 02:02:25 +09:00
|
|
|
"./src/**/*.ts"
|
2019-11-24 17:09:32 +09:00
|
|
|
],
|
2023-02-26 11:28:05 +09:00
|
|
|
"exclude": [
|
|
|
|
"./src/**/*.test.ts"
|
|
|
|
]
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|