You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DocsGPT/extensions/react-widget/tsconfig.json

32 lines
731 B
JSON

12 months ago
{
"compilerOptions": {
7 months ago
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
},
"target": "ES2020",
12 months ago
"useDefineForClassFields": true,
7 months ago
"lib": ["ES2020", "DOM", "DOM.Iterable"],
12 months ago
"module": "ESNext",
7 months ago
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
12 months ago
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
7 months ago
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
12 months ago
},
7 months ago
"include": ["src", "src/components/ui/input.tsx", "index.ts"],
12 months ago
"references": [{ "path": "./tsconfig.node.json" }]
}