Skip to content

Commit

Permalink
chore(endomoat): use strict types
Browse files Browse the repository at this point in the history
  • Loading branch information
boneskull committed Feb 6, 2024
1 parent 2efd041 commit 5e78aa9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions packages/endomoat/src/tsconfig.json
Expand Up @@ -4,12 +4,13 @@
"outDir": "../types",
"rootDir": "..",
"paths": {
"lavamoat-core": ["../../core"]
"lavamoat-core": ["../../core"],
},
"target": "esnext",
"module": "NodeNext",
"types": ["node", "ses"]
"types": ["node", "ses"],
"strict": true,
},
"include": ["."],
"references": [{ "path": "../../core/tsconfig.json" }]
"references": [{ "path": "../../core/tsconfig.json" }],
}
7 changes: 4 additions & 3 deletions packages/endomoat/test/tsconfig.json
Expand Up @@ -3,12 +3,13 @@
"compilerOptions": {
"rootDir": "..",
"paths": {
"lavamoat-core": ["../../core"]
"lavamoat-core": ["../../core"],
},
"target": "esnext",
"module": "NodeNext",
"types": ["node", "ses"]
"types": ["node", "ses"],
"strict": true,
},
"include": ["../test"],
"references": [{ "path": "../src/tsconfig.json" }]
"references": [{ "path": "../src/tsconfig.json" }],
}

0 comments on commit 5e78aa9

Please sign in to comment.