2022-05-24 16:45:16 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-02-17 21:41:59 +00:00
|
|
|
"target": "es2017",
|
2023-03-28 19:26:40 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@/components/*": [
|
|
|
|
"./src/client/components/*"
|
|
|
|
],
|
|
|
|
"@/utils/*": [
|
|
|
|
"./src/client/utils/*"
|
|
|
|
],
|
|
|
|
"@/client/*": [
|
|
|
|
"./src/client/*"
|
|
|
|
],
|
2023-04-05 15:11:03 +00:00
|
|
|
"@/server/*": [
|
|
|
|
"./src/server/*"
|
|
|
|
],
|
2023-05-06 11:20:44 +00:00
|
|
|
"@/shared/*": [
|
|
|
|
"./src/shared/*"
|
|
|
|
],
|
2023-09-08 15:19:52 +00:00
|
|
|
"@/lib/*": [
|
|
|
|
"./src/lib/*"
|
|
|
|
],
|
|
|
|
"@/actions/*": [
|
|
|
|
"./src/app/actions/*"
|
|
|
|
],
|
2023-06-23 06:04:08 +00:00
|
|
|
"@/tests/*": [
|
|
|
|
"./tests/*"
|
2023-09-01 20:22:27 +00:00
|
|
|
]
|
2023-03-28 19:26:40 +00:00
|
|
|
},
|
2023-03-24 07:43:51 +00:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"esnext"
|
|
|
|
],
|
2022-05-24 16:45:16 +00:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
2023-02-17 21:41:59 +00:00
|
|
|
"module": "CommonJS",
|
2022-05-24 16:45:16 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
2023-02-17 21:41:59 +00:00
|
|
|
"isolatedModules": true,
|
2022-05-24 16:45:16 +00:00
|
|
|
"jsx": "preserve",
|
2023-08-15 20:48:15 +00:00
|
|
|
"incremental": false,
|
2023-02-17 21:41:59 +00:00
|
|
|
"strictNullChecks": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
2023-03-24 07:43:51 +00:00
|
|
|
"types": [
|
|
|
|
"jest",
|
|
|
|
"@testing-library/jest-dom"
|
|
|
|
],
|
2023-09-01 20:22:27 +00:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "next"
|
|
|
|
}
|
|
|
|
]
|
2022-05-24 16:45:16 +00:00
|
|
|
},
|
2023-03-24 07:43:51 +00:00
|
|
|
"include": [
|
|
|
|
"next-env.d.ts",
|
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx",
|
|
|
|
"**/*.mjs",
|
|
|
|
"**/*.js",
|
2023-08-15 20:48:15 +00:00
|
|
|
"**/*.jsx",
|
2023-09-01 20:22:27 +00:00
|
|
|
".next/types/**/*.ts"
|
2023-03-24 07:43:51 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
2023-08-15 20:48:15 +00:00
|
|
|
"node_modules",
|
|
|
|
"packages",
|
2023-09-01 20:22:27 +00:00
|
|
|
"repos"
|
2023-03-24 07:43:51 +00:00
|
|
|
]
|
2022-05-24 16:45:16 +00:00
|
|
|
}
|