Files
hopdown/tsconfig.json
2026-08-10 12:25:39 -07:00

15 lines
308 B
JSON

{
"compilerOptions": {
"strict": true,
"target": "esnext",
"module": "esnext",
"esModuleInterop": true,
"types": ["node"],
"forceConsistentCasingInFileNames": true,
"outDir": "dist/lib",
"rootDir": "src/ts"
},
"include": ["src/ts/**/*.ts"],
"exclude": ["test/**/*"]
}