diff options
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..f71ca1d --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,27 @@ +{ + "include": [ + "src" + ], + "exclude": [ + "**/*.test.ts" + ], + "compilerOptions": { + "module": "esnext", + "target": "esnext", + "moduleResolution": "node", + "allowImportingTsExtensions": true, + "declaration": true, + "skipLibCheck": true, + "rootDir": "src", + "sourceMap": true, + "outDir": "dist", + "strict": true, + "esModuleInterop": true, + "lib": [ + "esnext", + ], + "types": [ + "vitest/globals" + ] + } +} |
