stack/packages/stack-shared/tsconfig.json
CactusBlue 816d64c850
In-source unit tests (#429)
Co-authored-by: Konsti Wohlwend <n2d4xc@gmail.com>
2025-02-14 11:47:52 -08:00

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"]
}