Skip to content

Commit

Permalink
fix tsconfig/file types, etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
ispyhumanfly committed Oct 31, 2023
1 parent 8fb0cf4 commit 97b82b5
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 13 deletions.
8 changes: 7 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"lerna.json": true,
"data": true,
".nvmrc": true
},
},
// Editor
"editor.quickSuggestions": {
"strings": true
Expand All @@ -41,5 +41,11 @@
"editor.codeActionsOnSave": {
"source.fixAll": true,
"eslint.format.enable": true
},
"files.associations": {
"*.ts": "typescript",
"*.html": "html",
"*.ans": "text",
"*.asc": "text"
}
}
4 changes: 0 additions & 4 deletions packages/templates/src/eternity/.iniquity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,8 @@
"dependencies": {
"@abraham/reflection": "^0.12.0",
"@iniquitybbs/core": "^3.0.67",
"core-js": "^3.33.1",
"core-js-bundle": "^3.33.1",
"corejs": "^1.0.0",
"docker-cli": "^0.0.2",
"lodash": "^4.17.21",
"promise-polyfill": "^8.3.0",
"tslib": "^2.6.2",
"yargs": "^17.7.1"
}
Expand Down
1 change: 1 addition & 0 deletions packages/templates/src/eternity/.iniquity/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"strict": true,
"composite": true,
"strictFunctionTypes": false,
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"target": "ES5",
"moduleResolution": "node",
Expand Down
14 changes: 7 additions & 7 deletions packages/templates/src/eternity/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"files.exclude": {
"**/.git": true,
"**/.vscode": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/.iniquity": true
"**/.git": false,
"**/.vscode": false,
"**/.hg": false,
"**/CVS": false,
"**/.DS_Store": false,
"**/Thumbs.db": false,
"**/.iniquity": false
}
}
2 changes: 1 addition & 1 deletion packages/templates/src/eternity/iniquity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import { IQ, IQReactor, IQModuleACLS } from "./.iniquity/node_modules/@iniquitybbs/core/src"
import { setInterval, Promise } from "./.iniquity/node_modules/@iniquitybbs/core/src/pollyfills"
// import { setInterval, Promise } from "./.iniquity/node_modules/@iniquitybbs/core/src/pollyfills"
import config from "./iniquity.json"

export class Eternity extends IQ {
Expand Down

0 comments on commit 97b82b5

Please sign in to comment.