Files
lobe-chat/tsconfig.json
T

46 lines
1.2 KiB
JSON
Raw Normal View History

2023-05-21 15:34:04 +08:00
{
"$schema": "https://json.schemastore.org/tsconfig",
2023-05-21 15:34:04 +08:00
"compilerOptions": {
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext", "webworker"],
2023-05-21 15:34:04 +08:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
2023-05-21 15:34:04 +08:00
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": ".",
"types": ["vitest/globals", "@serwist/next/typings"],
2023-05-21 15:34:04 +08:00
"paths": {
2025-08-22 11:09:03 +08:00
"@/database/*": ["./packages/database/src/*", "./src/database/*"],
"@/const/*": ["./packages/const/src/*", "./src/const/*"],
2025-08-22 14:05:01 +08:00
"@/utils/*": ["./packages/utils/src/*", "./src/utils/*"],
"@/types/*": ["./packages/types/src/*", "./src/types/*"],
"@/*": ["./src/*"],
"~test-utils": ["./tests/utils.tsx"]
2023-09-25 14:33:53 +08:00
},
"plugins": [
{
"name": "next"
}
]
2023-05-21 15:34:04 +08:00
},
"exclude": [
"node_modules",
"public/sw.js",
"apps/desktop",
"apps/mobile",
"tmp",
"temp",
".temp",
"e2e"
],
2025-08-25 22:38:41 +08:00
"include": ["**/*.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "next-env.d.ts"]
2023-05-21 15:34:04 +08:00
}