-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
72 lines (72 loc) · 1.97 KB
/
tsconfig.json
File metadata and controls
72 lines (72 loc) · 1.97 KB
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
66
67
68
69
70
71
72
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": [
"ESNext",
"DOM",
"DOM.Iterable",
"ScriptHost"
],
"module": "ESNext",
"moduleResolution": "Bundler",
"paths": {
"@/*": ["./src/*"],
"@omnicajs/vue-remote/host": ["./src/vue/host/index.ts"],
"@omnicajs/vue-remote/remote": ["./src/vue/remote/index.ts"],
"@omnicajs/vue-remote/tooling": ["./src/vue/tooling/index.ts"],
"@omnicajs/vue-remote/vite-plugin": ["./src/vue/vite-plugin.ts"],
"@omnicajs/vue-remote/webpack-loader": ["./src/vue/webpack-loader.ts"],
"~types/*": ["./types/*"],
"~tests/*": ["./tests/*"],
"@astrojs/starlight": ["./types/tools/starlight-tooling-stubs.d.ts"],
"@astrojs/starlight/loaders": ["./types/tools/starlight-tooling-stubs.d.ts"],
"@astrojs/starlight/schema": ["./types/tools/starlight-tooling-stubs.d.ts"],
"astro:content": ["./types/tools/starlight-tooling-stubs.d.ts"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": false,
"strict": true,
"target": "es2016",
"types": [
"@vue/compiler-core",
"@vue/compiler-dom",
"@vue/compiler-sfc",
"@vue/compiler-ssr",
"@vue/reactivity",
"@vue/runtime-core",
"@vue/runtime-dom",
"node"
],
"useDefineForClassFields": true
},
"vueCompilerOptions": {
"plugins": ["./tooling.cjs"]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"src/shims-*.d.ts",
"tests/**/*.ts",
"tests/**/*.vue",
"tests/shims-*.d.ts",
"rollup.config.ts",
"*.config.ts",
"*.config.*.ts",
"web/*.config.ts",
"web/*.config.*.ts",
"eslint.config.js",
"types/**/*.d.ts"
],
"exclude": [
"tests/types/**/*"
]
}