nitter/proxy/tsconfig.json

17 lines
372 B
JSON

{
"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"]
}