Dunlin is a lightweight, self-hosted CDN for personal projects.
at master 23 lines 481 B view raw
1{ 2 "extends": "@tsconfig/node22/tsconfig.json", 3 "include": [ 4 "vite.config.*", 5 "vitest.config.*", 6 "cypress.config.*", 7 "nightwatch.conf.*", 8 "playwright.config.*", 9 "eslint.config.*" 10 ], 11 "compilerOptions": { 12 "baseUrl": ".", 13 "paths": { 14 "@/*": ["./src/*"] 15 }, 16 "noEmit": true, 17 "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", 18 19 "module": "ESNext", 20 "moduleResolution": "Bundler", 21 "types": ["node"] 22 } 23}