diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..004766c9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +.DS_Store +node_modules/ +dist/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* +**/*.log + +tests/**/coverage/ +tests/e2e/reports +selenium-debug.log + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.local + +package-lock.json diff --git a/src/types/auto-components.d.ts b/src/types/auto-components.d.ts index 070f6575..3087e205 100644 --- a/src/types/auto-components.d.ts +++ b/src/types/auto-components.d.ts @@ -8,6 +8,7 @@ export {} declare module 'vue' { export interface GlobalComponents { '.DS_Store': typeof import('./../../.DS_Store')['default'] + '.gitignore': typeof import('./../../.gitignore')['default'] AppLinkInput: typeof import('./../components/AppLinkInput/index.vue')['default'] AppLinkSelectDialog: typeof import('./../components/AppLinkInput/AppLinkSelectDialog.vue')['default'] 'AutoComponents.d': typeof import('./auto-components.d.ts')['default']