Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
Frontend V2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GraphPolaris
Frontend V2
Commits
e82b552c
Commit
e82b552c
authored
11 months ago
by
Leonardo Christino
Browse files
Options
Downloads
Patches
Plain Diff
chore: fix type check
parent
5d9e082b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
apps/web/tsconfig.json
+3
-0
3 additions, 0 deletions
apps/web/tsconfig.json
libs/shared/package.json
+1
-0
1 addition, 0 deletions
libs/shared/package.json
libs/shared/tsconfig.json
+13
-14
13 additions, 14 deletions
libs/shared/tsconfig.json
with
17 additions
and
14 deletions
apps/web/tsconfig.json
+
3
−
0
View file @
e82b552c
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
libs/shared/package.json
+
1
−
0
View file @
e82b552c
...
...
@@ -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"
:
{
...
...
This diff is collapsed.
Click to expand it.
libs/shared/tsconfig.json
+
13
−
14
View file @
e82b552c
...
...
@@ -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"
],
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment