Files
Qortal-Hub/electron/tsconfig.json
2025-07-27 09:42:57 +03:00

19 lines
461 B
JSON

{
"compileOnSave": true,
"include": ["./src/**/*", "./capacitor.config.ts", "./capacitor.config.js"],
"compilerOptions": {
"outDir": "./build",
"importHelpers": true,
"target": "ES2020",
"lib": ["ES2020", "DOM"],
"module": "CommonJS",
"moduleResolution": "node",
"esModuleInterop": true,
"typeRoots": ["./node_modules/@types"],
"allowJs": true,
"rootDir": ".",
"skipLibCheck": true,
"types": ["node"]
}
}