Support for TypeScript Modules

This commit is contained in:
Jarek Rozanski 2023-05-16 20:01:42 +00:00
parent 21bd300632
commit 6193324e89
5 changed files with 63 additions and 5 deletions

14
tsconfig.json Normal file
View file

@ -0,0 +1,14 @@
{
"include": ["src/**/*"],
"compilerOptions": {
"target": "es2016",
// "module": "commonjs",
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"allowJs": true,
"outDir": "dist",
"skipLibCheck": true
}
}