initial commit
This commit is contained in:
commit
40261065fe
6 changed files with 59 additions and 0 deletions
11
.eslintrc.cjs
Normal file
11
.eslintrc.cjs
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
/* eslint-env node */
|
||||||
|
module.exports = {
|
||||||
|
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
|
||||||
|
parser: "@typescript-eslint/parser",
|
||||||
|
plugins: ["@typescript-eslint"],
|
||||||
|
rules: {
|
||||||
|
"no-unused-vars": "off",
|
||||||
|
"@typescript-eslint/no-unused-vars": "warn",
|
||||||
|
},
|
||||||
|
root: true,
|
||||||
|
}
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
node_modules
|
10
config.ts
Normal file
10
config.ts
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
import Config from "@quados-tools/models/config.ts"
|
||||||
|
import packages from "@quados-tools/flatpak-manager/packages.ts"
|
||||||
|
|
||||||
|
export default Config.create({
|
||||||
|
installedPackages: [
|
||||||
|
packages.monophony,
|
||||||
|
packages.warehouse,
|
||||||
|
packages.heroicGamesLauncher,
|
||||||
|
],
|
||||||
|
})
|
12
package.json
Normal file
12
package.json
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
"name": "quados-config",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"main": "config.ts",
|
||||||
|
"type": "module",
|
||||||
|
"scripts": {
|
||||||
|
"rebuild": "echo todo"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@quados-tools": "link:/home/quadradical/Documents/Code/quados-tools/"
|
||||||
|
}
|
||||||
|
}
|
10
pnpm-lock.yaml
generated
Normal file
10
pnpm-lock.yaml
generated
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
lockfileVersion: '6.0'
|
||||||
|
|
||||||
|
settings:
|
||||||
|
autoInstallPeers: true
|
||||||
|
excludeLinksFromLockfile: false
|
||||||
|
|
||||||
|
dependencies:
|
||||||
|
'@quados-tools':
|
||||||
|
specifier: link:/home/quadradical/Documents/Code/quados-tools/
|
||||||
|
version: link:../../Documents/Code/quados-tools
|
15
tsconfig.json
Normal file
15
tsconfig.json
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"outDir": "./dist",
|
||||||
|
"module": "NodeNext",
|
||||||
|
"target": "ESNext",
|
||||||
|
"allowImportingTsExtensions": true,
|
||||||
|
"noEmit": true,
|
||||||
|
"moduleResolution": "NodeNext",
|
||||||
|
"esModuleInterop": true,
|
||||||
|
"resolveJsonModule": true
|
||||||
|
},
|
||||||
|
"ts-node": {
|
||||||
|
"esm": true
|
||||||
|
}
|
||||||
|
}
|
Reference in a new issue