Skip to content

Commit

Permalink
Update tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
thinknathan committed Oct 25, 2023
1 parent de292d9 commit 59a2496
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 19 deletions.
2 changes: 1 addition & 1 deletion src-electron/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"compilerOptions": {
"lib": ["ES2020"],
"module": "node16",
"moduleResolution": "Bundler",
"moduleResolution": "node16",
"typeRoots": ["./types/", "../node_modules/@types"]
},
"include": ["**/*.ts"]
Expand Down
23 changes: 5 additions & 18 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,18 @@
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"lib": [
"DOM",
"DOM.Iterable",
"ES2020"
],
"lib": ["DOM", "DOM.Iterable", "ES2020"],
"module": "esnext",
"moduleResolution": "Bundler",
"noEmit": true,
"noUncheckedIndexedAccess": true,
"resolveJsonModule": true,
"strict": true,
"target": "ES2020",
"typeRoots": [
"./src-www/scripts/types/",
"./node_modules/@types"
],
"typeRoots": ["./src-www/scripts/types/", "./node_modules/@types"],
"verbatimModuleSyntax": true
},
"include": [
"./src-www/**/*.ts"
],
"exclude": [
"./node_modules",
"./dist"
]
}
"include": ["./src-www/**/*.ts"],
"exclude": ["./node_modules", "./dist"]
}

0 comments on commit 59a2496

Please sign in to comment.