RTL/server/tsconfig.server.json

17 lines
380 B
JSON
Raw Permalink Normal View History

2023-10-03 17:35:13 -07:00
{
2023-10-04 13:49:39 -07:00
"extends": "../tsconfig.json",
"compilerOptions": {
"baseUrl": "../",
"outDir": "../backend",
"module": "Node16",
"moduleResolution": "Node16",
"target": "ES2022",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noEmit": false,
"allowImportingTsExtensions": false,
"types": ["node"]
2023-10-04 13:49:39 -07:00
},
"include": ["./**/*"]
2023-10-04 13:49:39 -07:00
}