You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2026-01-03 23:22:30 +03:00
* Change imports for Node.js compatibility Fixes: #4287 Signed-off-by: Johannes Marbach <n0-0ne+github@mailbox.org> * Run prettier * Run prettier (again) * Add comment * Update babel.config.cjs --------- Signed-off-by: Johannes Marbach <n0-0ne+github@mailbox.org> Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
16 lines
406 B
JSON
16 lines
406 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noUnusedLocals": true,
|
|
"noEmit": true,
|
|
"declaration": true,
|
|
"strict": true,
|
|
"allowImportingTsExtensions": true
|
|
},
|
|
"include": ["./src/**/*.ts", "./spec/**/*.ts"]
|
|
}
|