-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsconfig.json
55 lines (47 loc) · 1.02 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
51
52
53
54
55
{
"compilerOptions": {
"forceConsistentCasingInFileNames": true,
"types": ["node", "./src/global.d.ts"],
"allowSyntheticDefaultImports": true,
"typeRoots": ["node_modules/@types"],
"verbatimModuleSyntax": true,
"noUnusedParameters": false,
"noImplicitOverride": true,
"moduleResolution": "node",
"noImplicitReturns": true,
"resolveJsonModule": true,
"strictNullChecks": true,
"lib": ["esnext", "dom"],
"esModuleInterop": true,
"noUnusedLocals": true,
"importHelpers": true,
"noImplicitAny": true,
"skipLibCheck": true,
"module": "ESNext",
"target": "ESNext",
"sourceMap": true,
"jsx": "preserve",
"allowJs": true,
"checkJs": true,
"baseUrl": ".",
"strict": true,
"noEmit": true,
"paths": {
"@/*": ["src/*"]
}
},
"include": [
"src/**/*.js",
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.svelte"
],
"exclude": [
"node_modules",
"typings",
"public",
"build",
"dist",
"app"
]
}