-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·43 lines (28 loc) · 782 Bytes
/
tsconfig.json
File metadata and controls
executable file
·43 lines (28 loc) · 782 Bytes
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
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@playform/build/tsconfig",
"compilerOptions": {
"baseUrl": "./",
"emitDecoratorMetadata": true,
"exactOptionalPropertyTypes": false,
"experimentalDecorators": true,
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"moduleResolution": "Bundler",
"outDir": "Target",
"paths": {
"@codeeditorland/output/*": ["../Output/Target/Microsoft/VSCode/*"]
},
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
],
"rootDir": ".",
"skipLibCheck": true,
"types": ["astro/client", "astro/env"],
"typeRoots": ["./node_modules/@types", "./node_modules"],
"module": "esnext"
},
"exclude": ["Target", "node_modules"],
"include": [".astro/types.d.ts", "Source", "astro.config.ts"]
}