diff --git a/package.json b/package.json index 59a2a04..7b5c5ae 100644 --- a/package.json +++ b/package.json @@ -58,7 +58,6 @@ "jiti": "^1.19.3", "ts-node": "^10.9.1", "tsx": "^3.12.8", - "typescript": "^5.2.0", "unbuild": "^2.0.0", "vitest": "^0.34.3" }, @@ -78,6 +77,7 @@ } }, "dependencies": { - "@typescript-eslint/utils": "^6.5.0" + "@typescript-eslint/utils": "^6.5.0", + "typescript": "^5.2.2" } } \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 35a1312..657b395 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,6 +8,9 @@ dependencies: '@typescript-eslint/utils': specifier: ^6.5.0 version: 6.5.0(eslint@8.48.0)(typescript@5.2.2) + typescript: + specifier: ^5.2.2 + version: 5.2.2 devDependencies: '@babel/types': @@ -64,9 +67,6 @@ devDependencies: tsx: specifier: ^3.12.8 version: 3.12.8 - typescript: - specifier: ^5.2.0 - version: 5.2.2 unbuild: specifier: ^2.0.0 version: 2.0.0(typescript@5.2.2) @@ -1586,6 +1586,7 @@ packages: /ansi-styles@3.2.1: resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} engines: {node: '>=4'} + requiresBuild: true dependencies: color-convert: 1.9.3 dev: true @@ -1980,6 +1981,7 @@ packages: /color-convert@1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + requiresBuild: true dependencies: color-name: 1.1.3 dev: true @@ -1992,6 +1994,7 @@ packages: /color-name@1.1.3: resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + requiresBuild: true dev: true /color-name@1.1.4: @@ -3407,6 +3410,7 @@ packages: /has-flag@3.0.0: resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} engines: {node: '>=4'} + requiresBuild: true dev: true /has-flag@4.0.0: @@ -4987,6 +4991,7 @@ packages: /supports-color@5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} engines: {node: '>=4'} + requiresBuild: true dependencies: has-flag: 3.0.0 dev: true diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index 61b560b..0000000 --- a/tsconfig.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "compilerOptions": { - /* Visit https://aka.ms/tsconfig to read more about this file */ - /* Projects */ - "target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ - "types": [ - "vitest/globals" - ], - "module": "commonjs", /* Specify what module code is generated. */ - "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */ - "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ - "strict": true, /* Enable all strict type-checking options. */ - "skipLibCheck": true /* Skip type checking all .d.ts files. */ - } -} \ No newline at end of file