Files
Toby Kohlhagen b95af1940c first commit
2025-10-01 13:56:21 +09:30

17 lines
419 B
JSON

{
"extends": ["@tsconfig/node24", "@tsconfig/strictest"],
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}