2018-12-11 19:49:21 +01:00
|
|
|
{
|
|
|
|
|
"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",
|
2019-05-28 14:18:20 +02:00
|
|
|
"paths": {
|
2025-03-25 11:14:55 +01:00
|
|
|
"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
|
|
|
},
|
2020-04-02 01:03:19 +02:00
|
|
|
"include": ["./src/**/*.js", "./tests/**/*.js"]
|
2018-12-11 19:49:21 +01:00
|
|
|
}
|