mirror of
https://github.com/stack-auth/stack.git
synced 2026-07-20 21:29:36 +08:00
34 lines
592 B
JSON
34 lines
592 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"incremental": true,
|
|
"noErrorTruncation": true,
|
|
"skipLibCheck": true,
|
|
"types": [
|
|
"node",
|
|
"vitest/importMeta"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"scripts/**/*.ts",
|
|
"vitest.config.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|