mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-30 21:01:54 +08:00
21 lines
468 B
JSON
21 lines
468 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"target": "ES2021",
|
|
"lib": ["DOM", "DOM.Iterable", "ES2021"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"noUncheckedSideEffectImports": false,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"paths": {
|
|
"~/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src", "vite.config.ts"]
|
|
}
|