Files
actual/packages/crdt/tsconfig.dist.json
Joel Jeremy Marquez f964552b5b Update package versions
2024-01-21 03:26:22 -08:00

17 lines
406 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"extends": "../../tsconfig.json",
"compilerOptions": {
// Using ES2021 because thats the newest version where
// the latest Node 16.x release supports all of the features
"target": "ES2021",
"module": "Node16",
"moduleResolution": "Node16",
"noEmit": false,
"declaration": true,
"strict": true,
"outDir": "dist"
},
"include": ["."],
"exclude": ["dist"]
}