Files
patchy631--ai-engineering-hub/amazon-product-analysis-server/tsconfig.json
T
2026-07-13 12:37:47 +08:00

26 lines
638 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"jsx": "react-jsx",
"module": "ESNext",
"moduleResolution": "bundler",
"allowJs": true,
"strict": true,
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"types": ["node"],
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"include": ["index.ts", "src/**/*", "server.ts", "script.ts"],
"exclude": ["node_modules", "dist"]
}