refactor: update import statements to use node: prefix for fs and path modules
This commit is contained in:
parent
0d0c72ba1f
commit
84b2fc39a3
2 changed files with 3 additions and 2 deletions
|
|
@ -23,6 +23,7 @@ fic_nations.json
|
|||
gi_comuni_cap.json
|
||||
gi_nazioni.json
|
||||
flow-gen.ts
|
||||
check-unused-trpc.ts
|
||||
docs
|
||||
biome_plugins
|
||||
vitest.config.mts
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import * as fs from "fs";
|
||||
import * as path from "path";
|
||||
import * as fs from "node:fs";
|
||||
import * as path from "node:path";
|
||||
|
||||
// --- CONFIGURATION ---
|
||||
const ROOT_DIR: string = process.cwd();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue