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

36 lines
1005 B
JSON

12 months ago
{
"compilerOptions": {
7 months ago
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
7 months ago
},
"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,
/* The "typeRoots" configuration specifies the locations where
TypeScript looks for type definitions (.d.ts files) to
include in the compilation process.*/
"typeRoots": ["./dist/index.d.ts", "node_modules/@types"]
},
/* include /index.ts*/
"include": ["src", "./index.ts"],
"exclude": ["node_modules","dist"],
"references": [{ "path": "./tsconfig.node.json" }]
12 months ago
}