summary refs log tree commit diff
path: root/bundle/tsconfig.json
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-08 10:50:32 +0200
committerGitHub <noreply@github.com>2021-10-08 10:50:32 +0200
commit0e038bb3906f4434092282d3ec2d70530ce45667 (patch)
treeff2c8f2fe76c0ff7cf6e798a731df8ad9dfd2d1c /bundle/tsconfig.json
parent:arrow_up: update packages (diff)
parent:sparkles: bundle build script (diff)
downloadserver-ts-0e038bb3906f4434092282d3ec2d70530ce45667.tar.xz
Merge pull request #418 from TheArcaneBrony/compiler-change
Switch compiler to swc
Diffstat (limited to 'bundle/tsconfig.json')
-rw-r--r--bundle/tsconfig.json8
1 files changed, 5 insertions, 3 deletions
diff --git a/bundle/tsconfig.json b/bundle/tsconfig.json

index 6bf2e6b7..b300a426 100644 --- a/bundle/tsconfig.json +++ b/bundle/tsconfig.json
@@ -4,10 +4,10 @@ /* 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": ["ES2020"] /* Specify library files to be included in the compilation. */, + "lib": ["ES2021"] /* Specify library files to be included in the compilation. */, "allowJs": true /* Allow javascript files to be compiled. */, "checkJs": true /* Report errors in .js files. */, // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ @@ -63,6 +63,8 @@ /* Advanced Options */ "skipLibCheck": true /* Skip type checking of declaration files. */, - "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ + "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */, + "emitDecoratorMetadata": true, + "experimentalDecorators": true } }