hyperchat/scripts/tsconfig.json

35 lines
700 B
JSON

{
"compilerOptions": {
"allowJs": true,
"checkJs": false,
"composite": false,
"esModuleInterop": true,
"jsxFactory": "React.createElement",
"jsxFragmentFactory": "React.Fragment",
"jsx": "react",
"module": "esnext",
"moduleResolution": "Node",
"experimentalDecorators": true,
"removeComments": false,
"resolveJsonModule": true,
"sourceMap": true,
"strict": false,
"strictNullChecks": false,
"lib": [
"ESNext",
"DOM"
],
"target": "ESNext",
"typeRoots": [
"./node_modules/@types",
"./types/"
],
"outDir": "./dist"
},
"include": [
"*.mts",
],
"exclude": [
"node_modules",
]
}