Files
hopdown/tsconfig.json
T

15 lines
308 B
JSON
Raw Normal View History

2026-08-09 15:46:11 -07:00
{
"compilerOptions": {
"strict": true,
2026-08-10 12:25:39 -07:00
"target": "esnext",
"module": "esnext",
2026-08-09 15:46:11 -07:00
"esModuleInterop": true,
2026-08-10 11:48:01 -07:00
"types": ["node"],
2026-08-09 15:46:11 -07:00
"forceConsistentCasingInFileNames": true,
"outDir": "dist/lib",
"rootDir": "src/ts"
},
"include": ["src/ts/**/*.ts"],
"exclude": ["test/**/*"]
}