mirror of
https://github.com/stack-auth/stack.git
synced 2026-07-20 21:29:36 +08:00
Keep the transport migration isolated on a dedicated branch so development can continue without blocking dev. Co-authored-by: Cursor <cursoragent@cursor.com>
43 lines
713 B
JSON
43 lines
713 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": false,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"incremental": true,
|
|
"noErrorTruncation": true,
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"skipLibCheck": true,
|
|
"types": [
|
|
"vitest/importMeta"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.?ts",
|
|
"**/*.?tsx"
|
|
],
|
|
"exclude": [
|
|
"api",
|
|
"node_modules",
|
|
".next/dev",
|
|
"dist"
|
|
]
|
|
}
|