2024-02-18 16:03:57 +07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
|
|
|
"module": "esnext",
|
2024-02-22 12:14:58 +00:00
|
|
|
"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": ".",
|
2024-02-18 16:03:57 +07:00
|
|
|
"paths": {
|
2024-02-22 12:14:58 +00:00
|
|
|
"~/*": ["./*"]
|
2024-02-18 16:03:57 +07:00
|
|
|
}
|
|
|
|
},
|
2024-02-22 12:14:58 +00:00
|
|
|
"exclude": ["vite.config.*", "node_modules"]
|
2024-02-18 16:03:57 +07:00
|
|
|
}
|