2025-08-21 09:41:46 +09:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-10-27 16:40:59 +09:00
|
|
|
"target": "ES2020",
|
2025-08-21 09:41:46 +09:00
|
|
|
"module": "commonjs",
|
2025-10-27 16:40:59 +09:00
|
|
|
"lib": ["ES2020"],
|
2025-08-21 09:41:46 +09:00
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": "./src",
|
2025-10-27 16:40:59 +09:00
|
|
|
"strict": false,
|
2025-08-21 09:41:46 +09:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"moduleResolution": "node",
|
2025-10-27 16:40:59 +09:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"noImplicitReturns": false,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"noEmitOnError": false,
|
|
|
|
|
"noImplicitAny": false
|
2025-08-21 09:41:46 +09:00
|
|
|
},
|
2025-10-27 16:40:59 +09:00
|
|
|
"include": ["src/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "dist"],
|
|
|
|
|
"ts-node": {
|
|
|
|
|
"transpileOnly": true,
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs"
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-08-21 09:41:46 +09:00
|
|
|
}
|