mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
22 lines
488 B
JSON
22 lines
488 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"declaration": true,
|
|
"target": "ES2021",
|
|
"lib": ["DOM", "DOM.Iterable", "ES2021", "ES2022.Error"],
|
|
"module": "ES2020",
|
|
"moduleResolution": "Bundler",
|
|
"esModuleInterop": true,
|
|
"noErrorTruncation": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"types": [
|
|
"vitest/importMeta"
|
|
]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|