Files
chatgpt-on-wechat/desktop/tsconfig.main.json
2026-03-21 16:11:05 +08:00

18 lines
390 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020"],
"outDir": "dist/main",
"rootDir": "src/main",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": false,
"sourceMap": true
},
"include": ["src/main/**/*"]
}