LLOneBot/tsconfig.json
2023-11-06 00:16:01 +08:00

16 lines
340 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "commonjs",
"outDir": "./dist",
"strict": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
// "declaration": false
},
"files": ["src/main.ts", "src/preload.ts"],
"exclude": [
"node_modules"
]
}