yjs/tsconfig.json
jsingleton20 4f2affd4cd again
2023-05-09 13:36:33 -04:00

22 lines
465 B
JSON

{
"compilerOptions": {
"target": "ES2021",
"lib": ["ES2021", "dom"],
"module": "ES2020",
"allowJs": true,
"checkJs": true,
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"baseUrl": "./",
"emitDeclarationOnly": true,
"strict": true,
"noImplicitAny": true,
"moduleResolution": "node",
"paths": {
"yjs": ["./src/index.js"]
}
},
"include": ["./src/**/*.js", "./tests/**/*.js"]
}