diff --git a/.config/.cprc.json b/.config/.cprc.json index 9b4c4577..00bfc4d9 100644 --- a/.config/.cprc.json +++ b/.config/.cprc.json @@ -1,4 +1,4 @@ { - "version": "7.0.0", + "version": "7.6.0", "features": {} } diff --git a/.config/tsconfig.json b/.config/tsconfig.json index c0fc6d47..1daee41d 100644 --- a/.config/tsconfig.json +++ b/.config/tsconfig.json @@ -9,15 +9,18 @@ "alwaysStrict": true, "declaration": false, "rootDir": "../src", - "baseUrl": "../src", "typeRoots": ["../node_modules/@types"], - "resolveJsonModule": true + "resolveJsonModule": true, + "paths": { + "*": ["../src/*"] + } }, "ts-node": { "compilerOptions": { - "module": "commonjs", - "target": "es5", - "esModuleInterop": true + "module": "nodenext", + "target": "es2022", + "esModuleInterop": true, + "moduleResolution": "nodenext" }, "transpileOnly": true },