Files
lobe-chat/tsconfig.json
T

47 lines
967 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": {
"@/*": ["./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
},
2023-07-15 15:48:20 +08:00
"exclude": ["node_modules"],
"include": [
"next-env.d.ts",
"vitest.config.ts",
"src",
"tests",
"**/*.ts",
"**/*.d.ts",
2023-09-25 14:33:53 +08:00
"**/*.tsx",
".next/types/**/*.ts",
],
2023-07-18 11:38:10 +08:00
"ts-node": {
"compilerOptions": {
"module": "commonjs",
},
},
2023-05-21 15:34:04 +08:00
}