21 lines
506 B
JSON
21 lines
506 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"rootDir": "src",
|
|
"outDir": "build",
|
|
"lib": ["es6", "dom"],
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"importsNotUsedAsValues": "error"
|
|
},
|
|
"compileOnSave": true,
|
|
"exclude": ["test"],
|
|
"include": ["src", "test.d.ts", "../rrweb/src/record/workers/workers.d.ts"]
|
|
}
|