UNPKG

vite-plugin-tsconfig

Version:

Vite plugin that allows you to use alternate tsconfig files.

98 lines (97 loc) 2.92 kB
{ "name": "vite-plugin-tsconfig", "version": "1.0.5", "packageManager": "yarn@3.6.1", "description": "Vite plugin that allows you to use alternate tsconfig files.", "type": "module", "main-note": "Though this is ESM only, the following main is to appease tsc and varieties of moduleResolution e.g. node vs nodenext, otherwise types aren't found. see https://github.com/rosskevin/ts-esm-workspaces/tree/bug-main-required-to-build#workaround ", "main": "./dist/index.js", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, "sideEffects": false, "publishConfig": { "access": "public" }, "scripts": { "build": "yarn clean && tsup-node", "build:ide": "echo 'tsc -b' && tsc -b", "clean": "node ./scripts/clean.js", "clean:yarn": "node ./scripts/clean-yarn.js", "lint": "eslint . --cache --ext .js,.ts,.tsx", "lint:fix": "eslint . --cache --ext .js,.ts,.tsx --fix", "test": "echo 'no tests' && exit 0", "release": "yarn auto shipit" }, "keywords": [ "vite-plugin", "tsconfig" ], "licenses": [ { "type": "MIT", "url": "http://www.opensource.org/licenses/mit-license.php" } ], "repository": "https://github.com/alienfast/vite-plugin-tsconfig", "homepage": "https://github.com/alienfast/vite-plugin-tsconfig", "maintainers": [ { "name": "Kevin Ross", "email": "kevin.ross@alienfast.com" } ], "peerDependencies": { "vite": ">=3.1.6" }, "devDependencies": { "@alienfast/eslint-config": "^4.0.9", "@alienfast/tsconfig": "^1.0.1", "@auto-it/all-contributors": "^11.0.1", "@auto-it/first-time-contributor": "^11.0.1", "@auto-it/released": "^11.0.1", "@types/marked": "^5", "@types/marked-terminal": "^3.1.3", "auto": "^11.0.1", "eslint": "^8.48.0", "eslint-config-prettier": "^9.0.0", "eslint-import-resolver-typescript": "^3.6.0", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-import": "^2.28.1", "eslint-plugin-jest": "^27.2.3", "eslint-plugin-n": "^16.0.2", "eslint-plugin-prettier": "^5.0.0", "eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-simple-import-sort": "^10.0.0", "eslint-plugin-storybook": "^0.6.13", "eslint-plugin-unicorn": "^48.0.1", "eslint-plugin-unused-imports": "^3.0.0", "execa": "^8.0.1", "husky": "^8.0.3", "lint-staged": "^14.0.1", "npm-run-all": "^4.1.5", "prettier": "^3.0.2", "rimraf": "^5.0.1", "tsup": "^7.2.0", "typescript": "^5.2.2", "vite": "^4.4.9", "vite-plugin-dts": "^3.5.2", "vitest": "^0.34.3" }, "auto": { "plugins": [ "npm", "all-contributors", "first-time-contributor", "released" ] }, "dependencies": { "@alienfast/find-monorepo-root": "^1.0.9", "marked": "^7.0.5", "marked-terminal": "^5.2.0" } }