fixed tsconfig by removing path aliases

This commit is contained in:
Palanikannan1437 2023-10-10 17:29:24 +05:30
parent 3ea7ab3151
commit 67fd3e296a
4 changed files with 5 additions and 19 deletions

View File

@ -8,8 +8,5 @@
"dist", "dist",
"build", "build",
"node_modules" "node_modules"
], ]
"compilerOptions": {
"baseUrl": "."
}
} }

View File

@ -8,8 +8,5 @@
"dist", "dist",
"build", "build",
"node_modules" "node_modules"
], ]
"compilerOptions": {
"baseUrl": "."
}
} }

View File

@ -3,13 +3,10 @@
"include": [ "include": [
"src/**/*", "src/**/*",
"index.d.ts" "index.d.ts"
, "../lite-text-editor/src/ui/extensions/enter-key-extension.tsx" ], ],
"exclude": [ "exclude": [
"dist", "dist",
"build", "build",
"node_modules" "node_modules"
], ]
"compilerOptions": {
"baseUrl": "."
}
} }

View File

@ -14,12 +14,7 @@
"noUnusedParameters": false, "noUnusedParameters": false,
"preserveWatchOutput": true, "preserveWatchOutput": true,
"skipLibCheck": true, "skipLibCheck": true,
"strict": true, "strict": true
"paths": {
"@/*": [
"./*"
]
}
}, },
"exclude": [ "exclude": [
"node_modules" "node_modules"