summaryrefslogtreecommitdiff
path: root/packages/pogen/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/pogen/tsconfig.json')
-rw-r--r--packages/pogen/tsconfig.json23
1 files changed, 12 insertions, 11 deletions
diff --git a/packages/pogen/tsconfig.json b/packages/pogen/tsconfig.json
index d61e5595a..482ce6fe8 100644
--- a/packages/pogen/tsconfig.json
+++ b/packages/pogen/tsconfig.json
@@ -1,13 +1,14 @@
{
- "compilerOptions": {
- "module": "commonjs",
- "target": "es5",
- "noImplicitAny": false,
- "sourceMap": false,
- "outDir": "lib",
- "incremental": true
- },
- "files": [
- "pogen.ts"
- ]
+ "compilerOptions": {
+ "module": "commonjs",
+ "target": "ES2020",
+ "noImplicitAny": false,
+ "outDir": "lib",
+ "incremental": true,
+ "moduleResolution": "node",
+ "sourceMap": true,
+ "lib": ["ES2020"],
+ "types": ["node"]
+ },
+ "include": ["src/**/*.ts"]
}