diff options
Diffstat (limited to 'packages/shared/tsconfig.json')
| -rw-r--r-- | packages/shared/tsconfig.json | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/shared/tsconfig.json b/packages/shared/tsconfig.json new file mode 100644 index 0000000..1636f4d --- /dev/null +++ b/packages/shared/tsconfig.json @@ -0,0 +1,16 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "ESNext", + "moduleResolution": "bundler", + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "outDir": "dist" + }, + "include": ["source"], + "exclude": ["node_modules", "dist"] +} |