forked from gqty-dev/gqty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
30 lines (30 loc) · 854 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
{
"compilerOptions": {
"rootDir": ".",
"outDir": "dist",
"declaration": true,
"target": "es2020",
"module": "es2020",
"strict": true,
"esModuleInterop": true,
"allowJs": false,
"jsx": "react",
"skipLibCheck": true,
"noUnusedLocals": true,
"moduleResolution": "node",
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"paths": {
"gqty": ["packages/gqty/src/index.ts"],
"gqty/*": ["packages/gqty/src/*"],
"@gqty/cli": ["packages/cli/src/index.ts"],
"@gqty/cli/*": ["packages/cli/src/*"],
"test-utils": ["internal/test-utils/src/index.ts"]
},
"importsNotUsedAsValues": "error"
},
"include": ["packages", "internal"],
"exclude": ["**/dist", "**/test", "**/website", "**/docs-website"]
}