-
Notifications
You must be signed in to change notification settings - Fork 39
/
tsconfig.json
44 lines (44 loc) · 1.12 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
{
"extends": ["./.svelte-kit/tsconfig.json"],
"compilerOptions": {
"strict": true,
"noEmit": true,
"allowJs": true,
"checkJs": true,
"sourceMap": true,
"module": "ESNext",
"skipLibCheck": true,
"alwaysStrict": true,
"isolatedModules": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ESNext", "DOM", "DOM.Iterable", "WebWorker"],
"types": ["typed-query-selector/strict", "unplugin-icons/types/svelte"],
"paths": {
"$*": ["./src/*"]
},
"plugins": [
{
"template": "gql",
"name": "gql.tada/ts-plugin",
"tadaOutputLocation": "./src/generated/graphql-env.d.ts",
"schema": {
"url": "https://blue.graphql.union.build/v1/graphql"
}
}
]
},
"include": ["src", "scripts"],
"exclude": ["./src/lib/components/ui"],
"files": [
"reset.d.ts",
"vite.config.ts",
"svelte.config.js",
"environment.d.ts",
"postcss.config.cjs",
"tailwind.config.ts"
]
}