Files
lobe-chat/tsconfig.json
T

40 lines
825 B
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"],
"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-22 17:24:13 +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",
"vitest.config.ts",
"src",
"tests",
"**/*.ts",
"**/*.d.ts",
"**/*.tsx"
],
2023-07-18 11:38:10 +08:00
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
}
2023-05-21 15:34:04 +08:00
}