-
Matiss Janis Aboltins authored
Making the `crdt` package fully TypeScript-strict.
Matiss Janis Aboltins authoredMaking the `crdt` package fully TypeScript-strict.
tsconfig.dist.json 374 B
{
"extends": "../../tsconfig.json",
"compilerOptions": {
// Using ES2021 because that’s the newest version where
// the latest Node 16.x release supports all of the features
"target": "es2021",
"module": "CommonJS",
"noEmit": false,
"declaration": true,
"strict": true,
"outDir": "dist"
},
"include": ["."],
"exclude": ["dist"]
}