2 |
3 |
4 |
5 |
6 |
7 |
8 | {{ groupTitle }}
9 |
10 |
11 |
12 |
13 |
14 |
15 | {{ groupTitle }}
16 |
17 |
18 |
29 |
30 |
31 | {{ t('done') }}
32 |
33 |
34 |
35 |
36 |
44 |
45 |
46 |
47 |
48 | {{ groupTitle }}
49 |
50 |
51 |
52 |
64 |
65 |
66 |
67 |
68 |
154 |
155 |
199 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "esnext",
4 | "module": "esnext",
5 | "strict": true,
6 | "jsx": "preserve",
7 | "importHelpers": true,
8 | "skipLibCheck": true,
9 | "moduleResolution": "node",
10 | "esModuleInterop": true,
11 | "allowSyntheticDefaultImports": true,
12 | "resolveJsonModule": true,
13 | "sourceMap": true,
14 | "baseUrl": ".",
15 | "paths": {
16 | "@/*": ["src/*"]
17 | },
18 | "lib": ["esnext", "dom", "dom.iterable", "scripthost"]
19 | },
20 | "include": ["src/**/*.ts", "src/**/*.js", "src/**/*.vue"],
21 | "exclude": ["node_modules"]
22 | }
23 |
--------------------------------------------------------------------------------