fix: build and config

This commit is contained in:
ThaUnknown 2023-11-21 18:07:11 +01:00
parent 9320111dac
commit 1400abb6a9
3 changed files with 11 additions and 2 deletions

View file

@ -32,6 +32,9 @@ jobs:
node-version: '16'
cache: 'pnpm'
- name: Enter Electron
run: cd electron
- name: Install dependencies
run: pnpm install --frozen-lockfile

View file

@ -4,7 +4,10 @@
"target": "ESNext",
"moduleResolution": "node",
"module": "ESNext",
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"paths": {
"@/*": ["./common/*"],
}
},
"exclude": ["node_modules/**", "**/node_modules", "dist", "build"]
}

View file

@ -4,7 +4,10 @@
"target": "ESNext",
"moduleResolution": "node",
"module": "ESNext",
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"paths": {
"@/*": ["./common/*"],
}
},
"exclude": ["node_modules/**", "**/node_modules", "dist", "build"]
}