refactor: update import statements to use node: prefix for fs and path modules

This commit is contained in:
Marco Pedone 2026-04-03 19:16:43 +02:00
parent 0d0c72ba1f
commit 84b2fc39a3
2 changed files with 3 additions and 2 deletions

View file

@ -23,6 +23,7 @@ fic_nations.json
gi_comuni_cap.json gi_comuni_cap.json
gi_nazioni.json gi_nazioni.json
flow-gen.ts flow-gen.ts
check-unused-trpc.ts
docs docs
biome_plugins biome_plugins
vitest.config.mts vitest.config.mts

View file

@ -1,5 +1,5 @@
import * as fs from "fs"; import * as fs from "node:fs";
import * as path from "path"; import * as path from "node:path";
// --- CONFIGURATION --- // --- CONFIGURATION ---
const ROOT_DIR: string = process.cwd(); const ROOT_DIR: string = process.cwd();