Compare commits

...

1 Commits

Author SHA1 Message Date
Aaryan Khandelwal 540cafb13a fix: editor tsconfig 2025-07-18 15:47:47 +05:30
2 changed files with 4 additions and 2 deletions
+2 -2
View File
@@ -22,10 +22,10 @@
}
},
"scripts": {
"build": "tsup --minify",
"build": "tsc && tsup --minify",
"dev": "tsup --watch",
"check:lint": "eslint . --max-warnings 0",
"check:types": "tsc --noEmit",
"check:types": "tsc",
"check:format": "prettier --check \"**/*.{ts,tsx,md,json,css,scss}\"",
"fix:lint": "eslint . --fix",
"fix:format": "prettier --write \"**/*.{ts,tsx,md,json,css,scss}\"",
+2
View File
@@ -4,8 +4,10 @@
"lib": ["ES2022", "DOM"],
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
"target": "ESNext",
"sourceMap": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/core/*"],