This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
65 lines (52 loc) · 1.67 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
56
57
58
59
60
61
62
63
64
65
{"$schema":"https://json.schemastore.org/tsconfig.json",
"compileOnSave": false,
"compilerOptions": {
"rootDir": "./",
"baseUrl": "./",
"target": "ES2020",
"module": "ESNext",
"lib": [
"ESNext",
"DOM.Iterable",
"DOM",
"ScriptHost"
],
"moduleResolution": "node",
"declaration": false,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"importHelpers": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"paths": {
"astro-portal": ["Packages/Plugins/Astro/Portal/src/index.ts"],
"astro-portal/*": ["Packages/Plugins/Astro/Portal/src/*" ],
"expect-boolean": ["Packages/Utilities/ExpectBoolean/src/index.ts"],
"expect-boolean/*": ["Packages/Utilities/ExpectBoolean/src/*" ],
"lazy-portal": ["Packages/Components/WebComponents/LazyPortal/src/index.ts"],
"lazy-portal/*": ["Packages/Components/WebComponents/LazyPortal/src/*" ],
"mock": ["Packages/Utilities/Mock/src/index.ts"],
"mock/*": ["Packages/Utilities/Mock/src/*" ]
}
},
"include": [
"**/*.d.ts",
"Apps/**/*.astro", "Packages/**/*.astro",
"Apps/**/*.cjs", "Packages/**/*.cjs",
"Apps/**/*.js", "Packages/**/*.js",
"Apps/**/*.jsx", "Packages/**/*.jsx",
"Apps/**/*.md", "Packages/**/*.md",
"Apps/**/*.mdx", "Packages/**/*.mdx",
"Apps/**/*.mjs", "Packages/**/*.mjs",
"Apps/**/*.svelte", "Packages/**/*.svelte",
"Apps/**/*.ts", "Packages/**/*.ts",
"Apps/**/*.tsx", "Packages/**/*.tsx",
"Apps/**/*.vue", "Packages/**/*.vue"
],
"exclude": [
"node_modules",
"tmp"
]
}