openreplay/tracker/tracker/tsconfig-base.json

18 lines
433 B
JSON

{
"compilerOptions": {
"rootDir": "src",
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": true,
"alwaysStrict": false,
"target": "es2020",
"lib": ["DOM", "ES2020"],
"module": "ES2022",
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"outDir": "build"
},
"exclude": ["**/*.test.ts"]
}