nitter/proxy/tsconfig.json

17 lines
372 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/**/*"],
2024-05-19 07:05:01 +00:00
"exclude": ["node_modules"]
2024-05-19 06:32:16 +00:00
}