time-warp-manipulation
Version:
A TypeScript-based library for manipulating JavaScript time: freeze, fast-forward, rewind, or accelerate the clock.
23 lines (20 loc) • 496 B
JSON
{
"compilerOptions": {
// Node’s next-gen ESM
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2020",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
// Dist output
"outDir": "./dist",
"rootDir": "./src",
// Generate .d.ts for external use
"declaration": true,
"declarationMap": true
},
"include": ["src"],
"exclude": ["node_modules", "**/__tests__"]
}