Files
stanza/apps/web/tsconfig.json
T
2026-05-20 11:52:53 -04:00

17 lines
413 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"jsx": "preserve",
"jsxImportSource": "react",
"lib": ["DOM", "DOM.Iterable", "ES2023"],
"moduleResolution": "Bundler",
"verbatimModuleSyntax": false,
"noEmit": true,
"allowImportingTsExtensions": true,
"paths": {
"~/*": ["./src/*"]
}
},
"include": ["src/**/*.ts", "src/**/*.tsx", "vite.config.ts"]
}