-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtsconfig.json
46 lines (46 loc) · 1.26 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
45
46
{
"compilerOptions": {
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowJs": true,
"strictFunctionTypes": true,
"noImplicitAny": false,
"resolveJsonModule": true,
"target": "es6",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": ["node", "stripe", "vite/client"],
"plugins": [{ "name": "@vuedx/typescript-plugin-vue" }],
"typeRoots": ["node_modules/@types"],
"paths": {
"@/*": ["./src/*", "./*", "src/*"]
},
"lib": ["esnext", "dom.iterable", "scripthost", "es2015", "es2016", "dom", "es2018.promise"]
},
"paths": {
"@/*": ["./src/*", "./*", "src/*"]
},
"include": ["./src", "./src/**/*", "src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx", "src/locale/*"],
"exclude": ["node_modules"],
"trailing-comma": [
true,
{
"singleline": "never",
"multiline": {
"objects": "never",
"arrays": "always",
"functions": "never",
"typeLiterals": "ignore"
}
}
],
"no-var-requires": false
}