forked from trent_larson/crowd-funder-for-time-pwa
- Create separate Electron-specific capacitor config - Update build script to not copy main config to Electron directory - Fix TypeScript compilation by excluding main config from Electron tsconfig Resolves TypeScript compilation errors in npm run build:electron:dev
20 lines
449 B
JSON
20 lines
449 B
JSON
{
|
|
"compileOnSave": true,
|
|
"include": ["./src/**/*"],
|
|
"compilerOptions": {
|
|
"outDir": "./build",
|
|
"importHelpers": true,
|
|
"target": "ES2017",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"allowJs": true,
|
|
"rootDir": ".",
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"noImplicitAny": false
|
|
}
|
|
}
|