diff options
Diffstat (limited to 'src/api/tsconfig.json')
| -rw-r--r-- | src/api/tsconfig.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/api/tsconfig.json b/src/api/tsconfig.json new file mode 100644 index 0000000..2f27acb --- /dev/null +++ b/src/api/tsconfig.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "declaration": true, + "target": "es5", + "module": "commonjs", + "noImplicitAny": true, + "outDir": "dist", + "rootDir": ".", + "lib": [ + "es6", + "dom" + ], + "typeRoots": [ + "node_modules/@types" + ] + }, + "exclude": [ + "dist", + "node_modules" + ] +} |
