-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
standalone: fix regressions for e2e test and standard deploy flow
- Loading branch information
1 parent
bcd11a2
commit 6341a5d
Showing
10 changed files
with
108 additions
and
28 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es6", // Specify ECMAScript target version: 'es5', 'es6', 'es2016', 'es2017', 'es2018', 'esnext', etc. | ||
"module": "commonjs", // Specify module code generation: 'commonjs', 'amd', 'system', 'umd', 'es6', 'es2015', 'none' | ||
"checkJs": false, // Enable/disable type checking in JavaScript files | ||
"jsx": "preserve", // Specify JSX code generation: 'preserve', 'react-native', or 'react' | ||
"baseUrl": ".", // Base directory to resolve non-relative module names | ||
"paths": { | ||
"oc/*": ["src/assets/javascripts/*"], | ||
"oc_dashboard": ["src/gitlab-oc/dashboard"], | ||
"oc_dashboard/*": ["src/gitlab-oc/dashboard/*"], | ||
"oc_vue_shared/*": ["src/gitlab-oc/vue_shared/*"], | ||
"~/*": ["src/assets/javascripts/*"], | ||
"oc_pages/*": ["src/gitlab-oc/*"] | ||
} | ||
}, | ||
"include": [ | ||
"src/**/*" // Include all files in the 'src' folder and subfolders | ||
], | ||
"exclude": [ | ||
"node_modules", // Exclude 'node_modules' folder | ||
"dist" // Exclude 'dist' folder | ||
] | ||
} |
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
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