22 lines
469 B
JSON
22 lines
469 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2021",
|
|
"lib": ["ES2021", "dom"],
|
|
"module": "node16",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"emitDeclarationOnly": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "nodenext",
|
|
"paths": {
|
|
"yjs": ["./src/index.js"]
|
|
}
|
|
},
|
|
"include": ["./src/**/*.js", "./tests/**/*.js"]
|
|
}
|