runtipi/tsconfig.json

77 lines
1.4 KiB
JSON
Raw Normal View History

2022-05-24 16:45:16 +00:00
{
"compilerOptions": {
"target": "es2017",
"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/*"
],
"@/tests/*": [
"./tests/*"
2023-09-01 20:22:27 +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,
"module": "CommonJS",
2022-05-24 16:45:16 +00:00
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
2022-05-24 16:45:16 +00:00
"jsx": "preserve",
2023-08-15 20:48:15 +00:00
"incremental": false,
"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
}