mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-02 03:20:37 +08:00

* chore(UI): @types/node version is updated and port sync finder is removed * chore(UI): tsconfig is updated * fix(bug) webpack config is updated * fix(bug): some eslint error is now fixed * chore(lock): yarn lock is fixed
14 lines
339 B
JSON
14 lines
339 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"target": "es5",
|
|
"lib": ["es5", "dom"],
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
// be explicit about types included
|
|
// to avoid clashing with Jest types
|
|
"types": ["cypress", "@testing-library/cypress", "node"],
|
|
"isolatedModules": false
|
|
},
|
|
"include": ["../node_modules/cypress", "./**/*.ts"]
|
|
}
|