2 |
3 |
14 |
15 | {{ trigger.label }}
16 |
17 |
18 |
19 |
20 |
100 |
101 |
--------------------------------------------------------------------------------
/src/shims.d.ts:
--------------------------------------------------------------------------------
1 | declare module '*.vue' {
2 | import { DefineComponent } from 'vue';
3 | const component: DefineComponent<{}, {}, any>;
4 | export default component;
5 | }
6 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "ES2019",
4 | "lib": ["ES2019", "DOM"],
5 | "moduleResolution": "node",
6 | "strict": true,
7 | "noFallthroughCasesInSwitch": true,
8 | "esModuleInterop": true,
9 | "noImplicitAny": true,
10 | "noImplicitThis": true,
11 | "noImplicitReturns": true,
12 | "noUnusedLocals": true,
13 | "noUncheckedIndexedAccess": true,
14 | "noUnusedParameters": true,
15 | "alwaysStrict": true,
16 | "strictNullChecks": true,
17 | "strictFunctionTypes": true,
18 | "strictBindCallApply": true,
19 | "strictPropertyInitialization": true,
20 | "resolveJsonModule": false,
21 | "skipLibCheck": true,
22 | "forceConsistentCasingInFileNames": true,
23 | "allowSyntheticDefaultImports": true,
24 | "isolatedModules": true,
25 | "rootDir": "./src"
26 | },
27 | "include": ["./src/**/*.ts"]
28 | }
29 |
--------------------------------------------------------------------------------