-
Notifications
You must be signed in to change notification settings - Fork 8
/
tsconfig.json
40 lines (40 loc) · 1.22 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
{
"compilerOptions": {
"target": "ESNEXT",
"module": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"verbatimModuleSyntax": true,
"strict": true,
"noEmit": true,
"importHelpers": true,
"moduleResolution": "Node",
"jsx": "preserve",
"noImplicitAny": false,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"noImplicitOverride": true,
"baseUrl": "./frontend",
"paths": {
"@svelte-preprocess-react": ["svelte-preprocess-react/index.ts"],
"@svelte-preprocess-react/inject": ["svelte-preprocess-react/inject.ts"],
"@svelte-preprocess-react/component": [
"svelte-preprocess-react/component.ts"
],
"@svelte-preprocess-react/slot": ["svelte-preprocess-react/slot.ts"],
"@svelte-preprocess-react/provider": [
"svelte-preprocess-react/provider.ts"
],
"@svelte-preprocess-react/react-slot": [
"svelte-preprocess-react/react-slot.tsx"
],
"@svelte-preprocess-react/context": [
"svelte-preprocess-react/context.ts"
],
"@utils/*": ["utils/*"]
}
},
"include": ["frontend", "config"],
"exclude": ["node_modules"]
}