Server/project/.swcrc
Refringe 5740774a46
Apply Biome Formatting
This is the result of running `npm run format` which applies the Biome formatting rules. Rejoice!
2024-07-23 11:12:53 -04:00

32 lines
718 B
Plaintext

{
"$schema": "https://json.schemastore.org/swcrc",
"jsc": {
"parser": {
"syntax": "typescript",
"dynamicImport": true,
"decorators": true
},
"transform": {
"decoratorMetadata": true
},
"target": "es2022",
"loose": true,
"externalHelpers": false,
"keepClassNames": true,
"baseUrl": "./",
"paths": {
"@spt/*": ["src/*"]
}
},
"exclude": ["node_modules/"],
"module": {
"type": "commonjs",
"strict": false,
"strictMode": false,
"lazy": false,
"noInterop": false
},
"sourceMaps": true,
"minify": false
}