mirror of
https://github.com/upscayl/upscayl.git
synced 2026-02-19 11:55:37 -05:00
29 lines
709 B
JSON
29 lines
709 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": false,
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"module": "ES2020",
|
|
"moduleResolution": "Node16",
|
|
|
|
"noImplicitAny": false,
|
|
"paths": {
|
|
"_/*": ["src/*"],
|
|
"_public/*": ["public/*"],
|
|
"_main/*": ["src/main/*"],
|
|
"_preload/*": ["src/preload/*"],
|
|
"_renderer/*": ["src/renderer/*"],
|
|
"_types/*": ["src/types/*"],
|
|
"_utils/*": ["src/utils/*"],
|
|
"_tests/*": ["tests/*"]
|
|
},
|
|
"typeRoots": ["./node_modules/@types", "./src/types"],
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react",
|
|
"target": "ES2020"
|
|
},
|
|
"include": ["src/**/*", "tests/**/*"]
|
|
}
|