-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
50 lines (50 loc) · 1.31 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"include": [
"packages/shell",
"packages/shared",
"packages/types",
"packages/tests"
],
"compilerOptions": {
"target": "ES2015",
"module": "ESNext",
"lib": ["ES2019"],
"rootDir": "packages/",
"outDir": "packages/dist/",
"importHelpers": false,
"declaration": true,
"sourceMap": false,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"allowSyntheticDefaultImports": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "Node",
"experimentalDecorators": true,
"baseUrl": ".",
"paths": {
"qrc:/*": ["packages/*"],
"qt": ["packages/types/qt"],
"@qml/*": ["packages/types"],
"plasma/*": ["packages/types/plasma"],
"tslib": ["node_modules/tslib"],
"*": ["packages/*"]
},
"typeRoots": ["packages/types", "node_modules/@types"],
"types": ["qt", "node", "jest"],
"downlevelIteration": true,
"esModuleInterop": false,
"incremental": true,
"listFiles": true,
"noEmitOnError": false,
"tsBuildInfoFile": "./tsBuildInfo",
"pretty": true
}
}