Files
lobe-chat/tsconfig.json
T

57 lines
1.3 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,
2025-11-02 00:53:13 +08:00
"jsx": "react-jsx",
2023-05-21 15:34:04 +08:00
"incremental": true,
"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-11-02 00:53:13 +08:00
"include": [
"**/*.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"next-env.d.ts",
".next/dev/types/**/*.ts"
],
"references": [
{
"path": "./apps/desktop"
}
2025-11-02 00:53:13 +08:00
]
2023-05-21 15:34:04 +08:00
}