Replace UI module with Next.js
This commit is contained in:
parent
8aeff18162
commit
616205fe73
91 changed files with 3570 additions and 722 deletions
|
@ -1,54 +1,34 @@
|
|||
{
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"jsx": "react-jsx",
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"api/*": [
|
||||
"./src/api/*"
|
||||
],
|
||||
"app/*": [
|
||||
"./src/app/*"
|
||||
],
|
||||
"components/*": [
|
||||
"./src/components/*"
|
||||
],
|
||||
"constants/*": [
|
||||
"./src/constants/*"
|
||||
],
|
||||
"features/*": [
|
||||
"./src/features/*"
|
||||
],
|
||||
"hooks/*": [
|
||||
"./src/hooks/*"
|
||||
],
|
||||
"localization/*": [
|
||||
"./src/localization/*"
|
||||
],
|
||||
"pages/*": [
|
||||
"./src/pages/*"
|
||||
],
|
||||
"utils/*": [
|
||||
"./src/utils/*"
|
||||
],
|
||||
"types/*": [
|
||||
"./src/types/*"
|
||||
]
|
||||
},
|
||||
"types": [
|
||||
"node",
|
||||
"jest",
|
||||
"./src/types/yup"
|
||||
]
|
||||
},
|
||||
"include": [
|
||||
"./src/**/*.ts",
|
||||
"./src/**/*.tsx",
|
||||
"./types/modules.d.ts",
|
||||
"src/styles/theme.js"
|
||||
],
|
||||
"exclude": [
|
||||
"./node_modules",
|
||||
"./src/**/__tests__/*.tsx"
|
||||
]
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"module": "esnext",
|
||||
"moduleResolution": "bundler",
|
||||
"isolatedModules": true,
|
||||
"jsx": "preserve",
|
||||
"incremental": true,
|
||||
"types": [
|
||||
"node",
|
||||
"jest"
|
||||
],
|
||||
"strict": false,
|
||||
"noEmit": true,
|
||||
"plugins": [
|
||||
{
|
||||
"name": "next"
|
||||
}
|
||||
],
|
||||
"lib": [
|
||||
"dom",
|
||||
"dom.iterable",
|
||||
"esnext"
|
||||
]
|
||||
},
|
||||
"include": [
|
||||
"./src/**/*.ts",
|
||||
"./src/**/*.tsx",
|
||||
".next/types/**/*.ts"
|
||||
],
|
||||
"exclude": [
|
||||
"./src/**/__tests__/*.tsx"
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue