-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5367 from nextcloud/enh/vite
feat: Move to vite for bundling
- Loading branch information
Showing
32 changed files
with
2,281 additions
and
6,785 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
module.exports = { | ||
root: true, | ||
extends: [ | ||
'@nextcloud', | ||
'@nextcloud/eslint-config/typescript', | ||
], | ||
rules: { | ||
'@typescript-eslint/no-unused-vars': ['off'], | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,6 +88,7 @@ jobs: | |
cypress: | ||
runs-on: ubuntu-22.04 | ||
timeout-minutes: 30 | ||
needs: init | ||
|
||
strategy: | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"extends": "@vue/tsconfig/tsconfig.json", | ||
"include": ["./src/**/*.ts"], | ||
"compilerOptions": { | ||
"types": ["cypress", "cypress-visual-regression", "node", "dockerode", "@nextcloud/typings"], | ||
"target": "ESNext", | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
// Allow ts to import js files | ||
"allowJs": true, | ||
"allowSyntheticDefaultImports": true, | ||
"declaration": false, | ||
"noImplicitAny": false, | ||
"resolveJsonModule": true, | ||
"strict": true, | ||
}, | ||
"ts-node": { | ||
// these options are overrides used only by ts-node | ||
// same as our --compilerOptions flag and our TS_NODE_COMPILER_OPTIONS environment variable | ||
"compilerOptions": { | ||
"module": "commonjs", | ||
"verbatimModuleSyntax": false | ||
} | ||
} | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.