mirror of
https://github.com/khairul169/code-share.git
synced 2025-04-28 08:39:35 +07:00
20 lines
487 B
JSON
20 lines
487 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"module": "esnext",
|
|
"target": "ES2020",
|
|
// Doesn't apply to server/, see ts-node config down below and server/tsconfig.json
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"types": ["vite/client"],
|
|
"jsx": "react-jsx",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./*"]
|
|
}
|
|
},
|
|
"exclude": ["vite.config.*", "node_modules"]
|
|
}
|