-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
55 lines (55 loc) · 1.04 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
{
"extends": "@tsconfig/svelte/tsconfig.json",
"typedocOptions": {
"entryPoints": [
"src/main.ts"
],
"out": "docs/typedoc",
"plugin": "typedoc-plugin-markdown",
"entryDocument": "index.md",
"githubPages": false,
"readme": "none"
},
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": "./src",
"resolveJsonModule": true,
"esModuleInterop": true,
"inlineSources": true,
"sourceMap": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"module": "ESNext",
"target": "es2020",
"experimentalDecorators": true,
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"paths": {
"src": [
"src/*",
"tests/*"
]
},
"types": [
"jest",
"node",
"svelte"
],
"lib": [
"dom",
"es5",
"scripthost",
"es2015"
]
},
"include": [
"src/**/*",
"tests/**/*"
],
"exclude": [
"node_modules/*"
]
}