Files
lobe-chat/tsconfig.json
T

26 lines
610 B
JSON
Raw Normal View History

2023-05-21 15:34:04 +08:00
{
"compilerOptions": {
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": ".",
"types": ["vitest/globals"],
"paths": {
2023-07-11 19:46:11 +08:00
"@/*": ["src/*"]
2023-05-21 15:34:04 +08:00
}
},
2023-07-15 15:48:20 +08:00
"exclude": ["node_modules"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
2023-05-21 15:34:04 +08:00
}