Skip to content

Commit

Permalink
Update tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrucs committed Oct 17, 2024
1 parent efafe34 commit 77983b4
Showing 1 changed file with 47 additions and 12 deletions.
59 changes: 47 additions & 12 deletions frontend/src/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -15,18 +19,49 @@
"jsx": "preserve",
"baseUrl": ".",
"paths": {
"components/*": ["components/*"],
"__fixtures__/*": ["__fixtures__/*"],
"__mocks__/*": ["__mocks__/*"],
"routes": ["routes"],
"services/*": ["services/*"],
"stylesheet": ["stylesheet"],
"translations/*": ["translations/*"],
"customization/*": ["../customization/*"]
"components/*": [
"components/*"
],
"__fixtures__/*": [
"__fixtures__/*"
],
"__mocks__/*": [
"__mocks__/*"
],
"routes": [
"routes"
],
"services/*": [
"services/*"
],
"stylesheet": [
"stylesheet"
],
"translations/*": [
"translations/*"
],
"customization/*": [
"../customization/*"
]
},
"incremental": true,
"types": ["@testing-library/jest-dom"]
"types": [
"@testing-library/jest-dom"
],
"plugins": [
{
"name": "next"
}
]
},
"exclude": ["node_modules"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "cypress.config.ts"]
"exclude": [
"node_modules"
],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"cypress.config.ts",
".next/types/**/*.ts"
]
}

0 comments on commit 77983b4

Please sign in to comment.