mirror of
https://github.com/tsl0922/ttyd.git
synced 2025-12-24 20:54:21 +01:00
24 lines
428 B
JSON
24 lines
428 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "es6",
|
|
"lib": [
|
|
"es2017",
|
|
"dom"
|
|
],
|
|
"allowJs": true,
|
|
"jsx": "react",
|
|
"jsxFactory": "h",
|
|
"sourceMap": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedParameters": true
|
|
},
|
|
"include": [
|
|
"src/**/*.tsx",
|
|
"src/**/*.ts"
|
|
]
|
|
}
|