veridian-edge/tsconfig.json
2026-01-01 23:14:50 -08:00

23 lines
No EOL
481 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist",
"rootDir": "./src",
"types": [
"bun-types"
]
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist"
]
}