diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-10 11:03:04 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-10 11:03:04 +0200 |
commit | ce4e7512921c2935a3adec9d9b94848c0fac5ba1 (patch) | |
tree | 761958e0b5ad6df69f7d013dc75206061aef58a0 /api/tsconfig.json | |
parent | :sparkles: changed and fixed compiler (diff) | |
download | server-ce4e7512921c2935a3adec9d9b94848c0fac5ba1.tar.xz |
:art: clean up dependencies
Diffstat (limited to 'api/tsconfig.json')
-rw-r--r-- | api/tsconfig.json | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/api/tsconfig.json b/api/tsconfig.json index 0bbd615a..2cf4e4c1 100644 --- a/api/tsconfig.json +++ b/api/tsconfig.json @@ -1,10 +1,11 @@ { + "exclude": ["node_modules"], "include": ["src/**/*.ts"], "compilerOptions": { /* Visit https://aka.ms/tsconfig.json to read more about this file */ /* Basic Options */ - // "incremental": true, /* Enable incremental compilation */ + "incremental": true /* Enable incremental compilation */, "target": "ESNext" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */, "module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */, "lib": ["ES2021"] /* Specify library files to be included in the compilation. */, @@ -69,6 +70,7 @@ "@fosscord/api": ["src/index"], "@fosscord/api/*": ["src/*"] }, - "plugins": [{ "transform": "@zerollup/ts-transform-paths" }] + "plugins": [{ "transform": "@zerollup/ts-transform-paths" }], + "experimentalDecorators": true } } |