Files
yjs/tsconfig.json

25 lines
605 B
JSON
Raw Normal View History

{
"compilerOptions": {
2023-03-11 12:20:52 +01:00
"target": "ES2021",
"lib": ["ES2021", "dom"],
"module": "node16",
"allowJs": true,
"checkJs": true,
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"baseUrl": "./",
2020-01-23 21:45:56 +01:00
"emitDeclarationOnly": true,
2023-03-11 12:20:52 +01:00
"strict": true,
"noImplicitAny": true,
"moduleResolution": "nodenext",
"paths": {
"yjs": ["./src/index.js"],
"yjs/internals": ["./src/internals.js"],
"yjs/testHelper": ["./tests/testHelper.js"]
2023-03-11 12:20:52 +01:00
}
2019-03-13 01:49:51 +01:00
},
2025-10-20 02:14:02 +02:00
"include": ["./src/**/*.js", "./tests/**/*.js"],
"exclude": ["./node_modules/**/*"]
}