Files
yjs/tsconfig.json

26 lines
609 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,
2026-02-26 18:00:17 +01:00
"noEmit": true,
2023-03-11 12:20:52 +01:00
"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/testHelper": ["./tests/testHelper.js"]
2023-03-11 12:20:52 +01:00
}
2019-03-13 01:49:51 +01:00
},
2026-02-26 18:00:17 +01:00
"files": ["./global.d.ts"],
2025-10-20 02:14:02 +02:00
"include": ["./src/**/*.js", "./tests/**/*.js"],
2026-02-26 18:00:17 +01:00
"exclude": ["node_modules", "dist"]
}