mirror of
https://github.com/jakejarvis/stanza.git
synced 2026-07-16 18:05:58 -04:00
17 lines
413 B
JSON
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"]
|
|
}
|