diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..00074bd --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,30 @@ +{ + "compileOnSave": true, + "compilerOptions": { + "target": "es2018", + "module": "commonjs", + "moduleResolution": "node", + "experimentalDecorators": true, + "emitDecoratorMetadata": true, + "inlineSourceMap": true, + "noImplicitThis": true, + "noUnusedLocals": false, + "stripInternal": true, + "skipLibCheck": true, + "resolveJsonModule": true, + "pretty": true, + "declaration": false, + "noImplicitAny": false, + "typeRoots": [ + "typings", + "./node_modules/@types", + ], + "outDir": "dist", + "rootDir": "src", + }, + "exclude": [ + "dist", + "node_modules", + "test", + ], +}