Skip to content
Snippets Groups Projects
Commit a9759368 authored by Guillaume WEBER's avatar Guillaume WEBER
Browse files

fix(build): ignore node_modules when building extention + remove duplicate tsconfig

parent c1496de3
No related branches found
No related tags found
2 merge requests!14feat: added mounted, .bashrc, .zshrc, added tests, added keycloak tests,!8feat(extension): login, open in devcontainer, automaticly save code, open briefing, publish extension
...@@ -4,3 +4,4 @@ out/ ...@@ -4,3 +4,4 @@ out/
src/ src/
dev/ dev/
tsconfig.json tsconfig.json
node_modules
\ No newline at end of file
{
"compilerOptions": {
"module": "commonjs",
"target": "es2019",
"lib": ["ES2019"],
"sourceMap": true,
"rootDir": "src",
"outDir": "dist",
"strict": true,
"noImplicitAny": false,
"allowJs": true,
"types": ["reflect-metadata"],
"moduleResolution": "node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true
/* enable all strict type-checking options */
/* Additional Checks */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
},
"exclude": ["node_modules", ".vscode-test", "dist", "out", "media", "resources", "webpack.config.js"]
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment