Files
materialious/materialious/electron/tsconfig.json
T
2026-04-23 22:40:54 +12:00

23 lines
440 B
JSON

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