Skip to content

Commit

Permalink
Fix duplicate jsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed May 3, 2024
1 parent 084759a commit c6d4e8f
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 10 deletions.
10 changes: 0 additions & 10 deletions frontend/jsconfig.json

This file was deleted.

44 changes: 44 additions & 0 deletions frontend/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"compilerOptions": {
"target": "ESNext",
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"module": "commonjs",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"paths": {
"@plone/volto/*": [
"../node_modules/@plone/volto/src/*",
"../node_modules/@plone/volto/types/*"
],
"volto-plonede": [
"addons/volto-plonede/src"
]
},
"baseUrl": "src"
},
"include": [
"src"
],
"exclude": [
"node_modules",
"build",
"public",
"coverage",
"src/**/*.test.{js,jsx,ts,tsx}",
"src/**/*.spec.{js,jsx,ts,tsx}",
"src/**/*.stories.{js,jsx,ts,tsx}"
]
}

0 comments on commit c6d4e8f

Please sign in to comment.