-
Notifications
You must be signed in to change notification settings - Fork 47
/
tsconfig.json
33 lines (33 loc) · 1.18 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"compileOnSave": true,
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"sourceMap": false,
"strict": true,
"pretty": false,
"removeComments": false,
"skipLibCheck": true,
"baseUrl": ".",
"moduleResolution": "node",
"paths": {
"resource:///org/gnome/shell/*": ["@imports/*"],
"resource:///org/gnome/Shell/Extensions/js/*": ["@imports/*"],
"@global": ["src/global.d.ts"],
"gi://Adw": ["node_modules/@gi-types/adw1"],
"gi://Gio": ["node_modules/@gi-types/gio2"],
"gi://Gtk": ["node_modules/@gi-types/gtk4"],
"gi://Gdk": ["node_modules/@gi-types/gdk4"],
"gi://GLib": ["node_modules/@gi-types/glib2"],
"gi://Meta": ["node_modules/@gi-types/meta10"],
"gi://Clutter":["node_modules/@gi-types/clutter10"],
"gi://Cogl": ["node_modules/@gi-types/cogl10"],
"gi://GObject":["node_modules/@gi-types/gobject2"],
"gi://Shell": ["node_modules/@gi-types/shell0"],
"gi://St": ["node_modules/@gi-types/st1"],
"gi://Graphene": ["node_modules/@gi-types/graphene1"]
},
"outDir": "./_build/"
},
"include": ["src/**/*.ts" ]
}