Skip to content

Commit

Permalink
updated tsconfig & import
Browse files Browse the repository at this point in the history
  • Loading branch information
richard483 committed Nov 10, 2023
1 parent d8e394d commit 4b13cb9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/contract/contract.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Injectable } from '@nestjs/common';
import { ContractRepository } from './contract.repository';
import { IContract } from './interface/contract.interface';
import { jsPDF } from 'jspdf';
import template from './assets/template.js';
import template from './assets/template.ts';
@Injectable()
export class ContractService {
constructor(private contractRepository: ContractRepository) {}
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false
"noFallthroughCasesInSwitch": false,
"allowImportingTsExtensions": true,
"emitDeclarationOnly": true
}
}

0 comments on commit 4b13cb9

Please sign in to comment.