mirror: A fast canonicalisation utility for stable object equality
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: simple tsconfig

Marais Rossouw (Jun 28, 2023, 5:07 PM +1000) ae4ec49f 6912d75a

+2 -6
+2 -6
tsconfig.json
··· 1 1 { 2 2 "extends": "@marais/tsconfig", 3 3 "compilerOptions": { 4 - "rootDir": ".", 5 4 "baseUrl": ".", 6 - "target": "esnext", 7 - "removeComments": false, 8 - "lib": ["ESNext"], 9 5 "paths": { 10 - "object-identity": ["./src/index.d.ts"] 6 + "object-identity": ["src/index.d.ts"] 11 7 } 12 8 }, 13 - "include": ["test/**/*", "src/**/*"], 9 + "include": ["src", "test"], 14 10 "exclude": ["node_modules"] 15 11 }