* start refactoring network * separate network module, refactor spot network capture Signed-off-by: nick-delirium <nikita@openreplay.com> * some console refactoring, display network results in ui * detect gql error param * fix proxy ignore file, fix network tracking, fix tab tracking * some code quality improvements... * handle graphql in network lib (.2 ver), update tracker to use last version of lib * remove debug logs, change request type to gql (if its gql!) in lib, display gql in ui --------- Signed-off-by: nick-delirium <nikita@openreplay.com>
16 lines
350 B
JSON
16 lines
350 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "build",
|
|
"declaration": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"alwaysStrict": true,
|
|
"target": "es2020",
|
|
"module": "es6",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
},
|
|
"exclude": ["**/*.test.ts"]
|
|
}
|