Skip to content

Commit

Permalink
changed to strict mode, updated some imports, version updated to v1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelBinpar committed May 4, 2021
1 parent e9de924 commit 62146ff
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@a2r/fs",
"version": "1.5.0",
"version": "1.5.1",
"description": "A2R file system library",
"main": "./index.js",
"types": "./index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions tools/fs.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import fs from 'fs';
import util from 'util';
import path from 'path';
import * as fs from 'fs';
import * as util from 'util';
import * as path from 'path';
import originalRimraf from 'rimraf';

/**
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"es2015",
"es2016"
],
"strict": false,
"strict": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"resolveJsonModule": true,
Expand Down

0 comments on commit 62146ff

Please sign in to comment.