mirror of
https://github.com/Discreetly/server.git
synced 2026-05-09 03:00:03 -04:00
22 lines
414 B
JSON
22 lines
414 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
},
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node",
|
|
},
|
|
"files": [
|
|
"./src/server.ts"
|
|
],
|
|
"include": [
|
|
"src/**/*",
|
|
"src/types/index.ts"
|
|
]
|
|
} |