Files
upscayl/tsconfig.json
Nayam Amarshe 6c18b7eeb3 Updated project
2022-08-05 02:32:12 +05:30

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/**/*"]
}