Files
ttyd/html/tsconfig.json
Al dea883a7fc html: allow overriding client options with URL query
change: overwrite options from url query params

rm console.log

add support for xterm options
2024-03-26 10:21:53 +08:00

20 lines
433 B
JSON

{
"extends": "./node_modules/gts/tsconfig-google.json",
"compilerOptions": {
"moduleResolution": "node",
"esModuleInterop": true,
"jsx": "react",
"jsxFactory": "h",
"allowJs": true,
"noImplicitAny": false,
"declaration": false,
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"lib": ["es2019", "dom"],
},
"include": [
"src/**/*.tsx",
"src/**/*.ts"
]
}