-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 828 Bytes
/
tsconfig.json
File metadata and controls
34 lines (34 loc) · 828 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
/**
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
{
//"extends": "@vue/tsconfig/tsconfig.json",
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["node"],
"allowJs": true,
"checkJs": false,
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"vite-plugin-eslint": ["./node_modules/vite-plugin-eslint/dist/index.d.ts"]
}
},
"include": [
"src/**/*.ts",
"src/**/*.vue",
"src/**/*.d.ts",
"vite.config.ts",
],
"exclude": ["node_modules"]
}