diff --git a/users/Profpatsch/alacritty-change-color-scheme/dbus-native.d.ts b/users/Profpatsch/alacritty-change-color-scheme/dbus-native.d.ts new file mode 100644 index 000000000..c55aeb511 --- /dev/null +++ b/users/Profpatsch/alacritty-change-color-scheme/dbus-native.d.ts @@ -0,0 +1 @@ +declare module 'dbus-native'; diff --git a/users/Profpatsch/alacritty-change-color-scheme/tsconfig.json b/users/Profpatsch/alacritty-change-color-scheme/tsconfig.json new file mode 100644 index 000000000..1fe004828 --- /dev/null +++ b/users/Profpatsch/alacritty-change-color-scheme/tsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "noEmit": true, + "target": "ES2022", + "lib": [ + "ES2022" + ], + "module": "ES2022", + "strict": true, + "checkJs": true, + "moduleResolution": "node" + }, + "include": [ + "*.ts", + "*.js" + ], +}