forked from yilozt/rounded-window-corners
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
32 lines (32 loc) · 1.04 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
{
"compileOnSave": true,
"compilerOptions": {
"target": "ES2020",
"module": "es2020",
"sourceMap": false,
"strict": true,
"pretty": false,
"removeComments": false,
"skipLibCheck": true,
"baseUrl": ".",
"moduleResolution": "node",
"paths": {
"@imports/*": ["@imports/*"],
"@global": ["src/global.d.ts"],
"@me/*": ["src/*"],
"@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" ]
}