Scratch space for learning atproto app development

Remove vitest

+2 -6
package.json
···
"build": "tsup",
"start": "node dist/index.js",
"lexgen": "lex gen-server ./src/lexicon ./lexicons/*",
-
"clean": "rimraf dist coverage",
-
"test": "vitest run"
+
"clean": "rimraf dist coverage"
},
"dependencies": {
"@atproto/identity": "^0.4.0",
···
"@types/express": "^4.17.21",
"pino-pretty": "^11.0.0",
"rimraf": "^5.0.0",
-
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
-
"typescript": "^5.4.4",
-
"vite-tsconfig-paths": "^4.3.2",
-
"vitest": "^2.0.0"
+
"typescript": "^5.4.4"
},
"tsup": {
"entry": [
+1 -2
tsconfig.json
···
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
-
"forceConsistentCasingInFileNames": true,
-
"types": ["vitest/globals"]
+
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
-13
vite.config.mts
···
-
import tsconfigPaths from "vite-tsconfig-paths";
-
import { defineConfig } from "vitest/config";
-
-
export default defineConfig({
-
test: {
-
coverage: {
-
exclude: ["**/node_modules/**", "**/index.ts"],
-
},
-
globals: true,
-
restoreMocks: true,
-
},
-
plugins: [tsconfigPaths()],
-
});