Files
rrweb/packages/rrweb/tsconfig.json
MF 72d08344c1 fix CI error (#1045)
* fix CI error

* change the CI triggering event to pull_request
2026-04-01 12:00:00 +08:00

42 lines
782 B
JSON

{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Node",
"target": "ES6",
"noImplicitAny": true,
"strictNullChecks": true,
"removeComments": true,
"preserveConstEnums": true,
"rootDir": "src",
"outDir": "build",
"lib": [
"es6",
"dom"
],
"downlevelIteration": true,
"importsNotUsedAsValues": "error",
"strictBindCallApply": true,
"composite": true
},
"references": [
{
"path": "../types"
},
{
"path": "../rrdom"
},
{
"path": "../rrweb-snapshot"
}
],
"exclude": [
"test",
"scripts"
],
"include": [
"src",
"node_modules/@types/css-font-loading-module/index.d.ts",
"node_modules/@types/jest-image-snapshot/index.d.ts"
]
}