-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
35 lines (35 loc) · 1022 Bytes
/
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
{
"compilerOptions": {
"strict": true,
"jsx": "preserve", // "vue", 'preserve', 'react'
// "jsxImportSource": "vue",
"outDir": "./dist",
"target": "esnext", // es2017, esnext,es6
"module": "esnext", // commonjs, es6
"lib": [
// es2015
"ESNext",
"DOM"
],
"declaration": false,
"sourceMap": true,
"noImplicitAny": false,
"allowJs": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"typeRoots": ["./node_modules/@types", "./node_modules/vite/dist/", "./types/"],
"baseUrl": ".",
"paths": {
"@/*": ["webapp/*"]
}
},
"exclude": ["node_modules"],
"include": [
"./**/*.ts",
"./**/*.tsx",
"./webapp/**/*.vue",
],
"types": ["vue-sweetalert2", "vite/client"]
}