diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000000..eecb13438e --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,16 @@ +{ + "version": "1.5.0", + "compilerOptions": { + "target": "es5", + "module": "commonjs", + "declaration": false, + "noImplicitAny": false, + "removeComments": true, + "noLib": false, + "outDir": "dist/js/cjs" + }, + "filesGlob": [ + "./**/*.ts", + "!./node_modules/**/*.ts" + ], +}