1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-01-31 20:15:25 +01:00
upscayl/tsconfig.json

16 lines
380 B
JSON
Raw Normal View History

2022-11-12 02:09:28 +05:30
{
"compilerOptions": {
2023-10-25 17:14:22 +05:30
"target": "es2016",
"module": "commonjs",
"rootDir": "./",
"outDir": "./export",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": false,
"skipLibCheck": true
2022-11-12 02:09:28 +05:30
},
2023-10-25 17:14:22 +05:30
"include": ["./electron/**/*", "./common/**/*"],
2022-11-12 02:09:28 +05:30
"exclude": ["node_modules", "public", "renderer"]
}