Signed-off-by: Devlin Junker <devlin.junker@gmail.com>
This commit is contained in:
Devlin Junker 2022-11-28 17:25:23 -10:00 committed by Benjamin Brahmer
parent c522bacfb1
commit c0bc5ecd51
3 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ module.exports = {
],
ignorePatterns: ['*.d.ts'],
rules: {
'no-console': ['warn'],
'no-console': 'warn',
'@typescript-eslint/no-var-requires': 'off',
// TODO: Trouble importing .ts files into .vue files for some reason?
'import/extensions': 'off',

View File

@ -6,7 +6,7 @@ import Explore from './components/Explore.vue'
import { generateUrl } from '@nextcloud/router'
import Vuex, { Store } from 'vuex'
import mainStore from './store/index.ts'
import mainStore from './store/index'
import { Tooltip } from '@nextcloud/vue'

View File

@ -10,7 +10,7 @@
"moduleResolution": "node",
"experimentalDecorators": true,
"skipLibCheck": true,
"esModuleInterop": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": true,