Skip to content

Commit

Permalink
chore: Update few configs in ts
Browse files Browse the repository at this point in the history
  • Loading branch information
aXenDeveloper committed Jun 18, 2024
1 parent b51c5dc commit a4daaa6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,7 @@ export class DownloadAdminPluginsService {
fs.cpSync(backendSource, backendPath, { recursive: true });

// Copy frontend files
const frontendPaths = [
"admin_pages",
"pages",
"plugin",
"templates",
"pages_container"
];
const frontendPaths = ["admin_pages", "pages", "plugin", "pages_container"];
frontendPaths.forEach(path => {
this.copyFiles({
destination: join(frontendPath, path),
Expand Down
10 changes: 1 addition & 9 deletions packages/backend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,11 @@
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "eslint-config-vitnode/tsconfig.base.json",
"compilerOptions": {
"moduleResolution": "Node",
"target": "ESNext",
"module": "CommonJS",
"outDir": "dist",
"noFallthroughCasesInSwitch": false,
"strictPropertyInitialization": false,
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"noImplicitAny": false,
"strictNullChecks": false,
"forceConsistentCasingInFileNames": false // TODO: Improve this value
"strictNullChecks": false
},
"include": ["src/**/*"]
}

0 comments on commit a4daaa6

Please sign in to comment.