1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-23 19:02:37 +01:00

Merge branch 'compiler-change' of https://github.com/thearcanebrony/fosscord-server into pr/TheArcaneBrony/418-1

This commit is contained in:
Flam3rboy 2021-10-07 18:22:15 +02:00
commit 29516da90f
7 changed files with 45 additions and 43 deletions

View File

@ -1,13 +1,16 @@
{
"module": {
"type": "commonjs"
},
"jsc": {
"parser": {
"syntax": "typescript",
"decorators": true
},
"target": "es2021",
"baseUrl": ".",
"baseUrl": "./",
"paths": {
"@fosscord/api": ["src/index"],
"@fosscord/api": ["src/index.ts"],
"@fosscord/api/*": ["src/*"]
}
}

View File

@ -1,22 +1,12 @@
{
"module": {
"type": "commonjs"
},
"jsc": {
"parser": {
"syntax": "ecmascript",
"jsx": false,
"dynamicImport": false,
"privateMethod": false,
"functionBind": false,
"exportDefaultFrom": false,
"exportNamespaceFrom": false,
"decorators": false,
"decoratorsBeforeExport": false,
"topLevelAwait": false,
"importMeta": false
"syntax": "typescript",
"decorators": true
},
"transform": null,
"target": "es2021",
"loose": false,
"externalHelpers": false,
"keepClassNames": false
"target": "es2021"
}
}

View File

@ -1,4 +1,7 @@
{
"module": {
"type": "commonjs"
},
"jsc": {
"parser": {
"syntax": "typescript",

View File

@ -1,4 +1,7 @@
{
"module": {
"type": "commonjs"
},
"jsc": {
"parser": {
"syntax": "typescript",

View File

@ -1,9 +0,0 @@
{
"jsc": {
"parser": {
"syntax": "typescript",
"decorators": true
},
"target": "es2021"
}
}

View File

@ -1,9 +1,18 @@
{
"jsc": {
"parser": {
"syntax": "typescript",
"decorators": true
},
"target": "es2021"
}
}
"module": {
"type": "commonjs"
},
"jsc": {
"parser": {
"syntax": "typescript",
"decorators": true
},
"target": "es2021",
"transform": {
"legacyDecorator": true,
"decoratorMetadata": true
},
"keepClassNames": true,
"loose": true
}
}

View File

@ -1,9 +1,12 @@
{
"jsc": {
"parser": {
"syntax": "typescript",
"decorators": true
},
"target": "es2021"
}
}
"module": {
"type": "commonjs"
},
"jsc": {
"parser": {
"syntax": "typescript",
"decorators": true
},
"target": "es2021"
}
}