mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
- Removed "allowImportingTsExtensions" from tsconfig.json in dashboard, local-config-updater, and stack-cli to streamline TypeScript configurations. - Updated import statement in local-config-updater to use a more explicit path for better clarity. These changes simplify TypeScript settings and improve code maintainability across the project.
24 lines
523 B
JSON
24 lines
523 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"declaration": true,
|
|
"target": "ES2021",
|
|
"lib": ["ES2021", "ES2022.Error"],
|
|
"module": "ES2020",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"noErrorTruncation": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"declarationMap": true,
|
|
"types": [
|
|
"vitest/importMeta"
|
|
]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|