forked from material-shell/material-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (34 loc) · 959 Bytes
/
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
34
{
"version": "1.1.0",
"compileOnSave": true,
"compilerOptions": {
"module": "es2020",
"target": "es2018",
"outDir": "./build",
"forceConsistentCasingInFileNames": true,
"downlevelIteration": true,
"lib": ["es2018"],
"pretty": true,
"sourceMap": false,
"declaration": false,
"removeComments": true,
"incremental": true,
"noImplicitAny": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"strictNullChecks": true,
"noFallthroughCasesInSwitch": true,
"allowJs": true,
"strict": true,
"moduleResolution": "node",
"importHelpers": true,
"baseUrl": ".",
"paths": {
"*": ["@gi-types/*", "*"],
"ui": ["src/types/ui"],
"gjs": ["src/types/gjs"]
},
"experimentalDecorators": true
},
"include": ["src/**/*.ts"]
}