diff options
Diffstat (limited to 'packages/cli/tsconfig.json')
| -rw-r--r-- | packages/cli/tsconfig.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/cli/tsconfig.json b/packages/cli/tsconfig.json new file mode 100644 index 00000000..a2597ca8 --- /dev/null +++ b/packages/cli/tsconfig.json @@ -0,0 +1,22 @@ +{ + "extends": "../../tsconfig.json", + "compilerOptions": { + "outDir": "./dist", + "rootDir": "./src", + "jsx": "react", + "lib": [ + "DOM", + "DOM.Iterable", + "ES2020" + ], + "module": "Node16", + "target": "ES2020", + }, + "exclude": [ + "node_modules", + "dist" + ], + "include": [ + "src" + ] +}
\ No newline at end of file |
