nitter/proxy/tsconfig.json

19 lines
380 B
JSON
Raw Normal View History

2024-05-19 06:32:16 +00:00
{
"compilerOptions": {
"lib": ["esnext"],
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "commonjs",
"target": "esnext",
"allowJs": true,
"sourceMap": true,
"outDir": "./build"
},
"include": ["src/**/*"],
"exclude": [
"node_modules"
]
}