mirror of
https://github.com/pjeby/quick-explorer.git
synced 2026-07-22 05:50:25 +00:00
23 lines
419 B
JSON
23 lines
419 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "es2020",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"jsx": "react",
|
|
"jsxFactory": "el",
|
|
"lib": [
|
|
"dom",
|
|
"es2020",
|
|
"scripthost"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts", "**/*.tsx"
|
|
]
|
|
}
|