diff options
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..5c519e8 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,24 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "declaration": true, + "declarationMap": true, + "esModuleInterop": true, + "lib": [ + "es2015" + ], + "module": "commonjs", + "newLine": "lf", + "outDir": "./dist", + "removeComments": false, + "rootDir": "./src", + "sourceMap": true, + "strict": true, + "target": "es5" + }, + "exclude": [ + "dist", + "node_modules", + "test" + ] +}
\ No newline at end of file |