-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtsconfig.json
44 lines (43 loc) · 1 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"incremental": true,
"tsBuildInfoFile": "dist/.tsbuildinfo",
"target": "ESNext",
"jsx": "react",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"rootDir": ".",
"module": "Preserve",
"types": [
"firefox-webext-browser",
"typed-query-selector",
"bun",
"vite/client",
"vite/types/metadata.d.ts"
],
"allowImportingTsExtensions": true,
"allowJs": true,
"strict": true,
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "dist/tsc",
"sourceMap": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"noErrorTruncation": true,
"skipLibCheck": true
},
"vueCompilerOptions": {
"strictTemplates": true
},
"include": [
"eslint.config.js",
"uno.config.ts",
"scripts/**/*.ts",
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/options_ui/**/*.vue",
"src/options_ui/components/**/*.vue"
]
}