Skip to content
Snippets Groups Projects
Commit 2759769c authored by Leonardo Christino's avatar Leonardo Christino
Browse files

chore: fix type check

parent a927f011
No related branches found
No related tags found
2 merge requests!135geo intergation,!129Feat/visManager
Pipeline #131632 passed
This commit is part of merge request !135. Comments created here will be created in the context of that merge request.
......@@ -26,6 +26,7 @@
"baseUrl": ".",
"types": ["vite/client"],
"paths": {
"@graphpolaris/shared/lib/*": ["./node_modules/@graphpolaris/shared/lib/*"],
"redux": ["./node_modules/redux"],
"@storybook/types": ["./node_modules/@storybook/types"],
"redux-thunk": ["./node_modules/redux-thunk"],
......@@ -36,6 +37,8 @@
"dist",
"build",
"node_modules",
"node_modules/*",
"node_modules/**/*",
"public",
"vitest.setup.ts", // excludes Vitest setup file
"tailwind.config.js", // excludes Tailwind CSS configuration file
......
......@@ -6,6 +6,7 @@
"scripts": {
"lint": "eslint lib/**/* --no-error-on-unmatched-pattern",
"test": "vitest run",
"type-p": "tsc --noEmit --skipLibCheck",
"coverage": "vitest run --coverage"
},
"peerDependencies": {
......
......@@ -2,31 +2,30 @@
"$schema": "https://json.schemastore.org/tsconfig",
"display": "React Library",
"compilerOptions": {
"target": "ESNext",
"composite": true,
"inlineSources": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveWatchOutput": true,
"target": "ES2022",
"jsx": "react-jsx",
"useDefineForClassFields": true,
"lib": ["ES2017", "DOM", "DOM.Iterable", "ESNext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"strict": true,
"noImplicitOverride": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"skipLibCheck": true,
"module": "ES2022",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"baseUrl": ".",
"incremental": true,
"noImplicitOverride": false,
"listFiles": false,
"composite": true,
"baseUrl": ".",
"paths": {
"@graphpolaris/shared/lib/*": ["./lib/*"],
"@graphpolaris/config/*": ["../../libs/config/src/*"],
"redux": ["./node_modules/redux"],
"@storybook/types": ["./node_modules/@storybook/types"],
"redux-thunk": ["./node_modules/redux-thunk"],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment