mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
TypeScript reports TS5101 for `baseUrl`, which is deprecated and will stop functioning in TS 7.0. The `paths` entries already use relative `./src/*` patterns, so `baseUrl` is unnecessary and can be dropped without changing module resolution. https://claude.ai/code/session_01RrgSn7AUsGYVPRthnudVMr
47 lines
855 B
JSON
47 lines
855 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2023",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"lib": [
|
|
"ES2023",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"paths": {
|
|
"@lib/*": [
|
|
"./src/lib/*"
|
|
],
|
|
"@stores/*": [
|
|
"./src/stores/*"
|
|
],
|
|
"@components/*": [
|
|
"./src/components/*"
|
|
],
|
|
"@pages/*": [
|
|
"./src/pages/*"
|
|
],
|
|
"@styles/*": [
|
|
"./src/styles/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src",
|
|
"tests"
|
|
],
|
|
"exclude": [
|
|
"tests/e2e"
|
|
]
|
|
}
|