@julr/tooling-configs
Version:
Shared tooling configs: TSConfig, OXC (oxlint + oxfmt)
18 lines (17 loc) • 488 B
JSON
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.base.json",
"compilerOptions": {
"target": "ESNext",
"jsx": "preserve",
"jsxImportSource": "vue",
"lib": ["DOM", "ESNext", "DOM.Iterable", "ES2020"],
"useDefineForClassFields": true,
"module": "NodeNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"verbatimModuleSyntax": true
}
}