api-server/tsconfig.json

16 lines
343 B
JSON
Raw Permalink Normal View History

2023-04-01 02:59:26 +00:00
{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"declaration": true,
"outDir": "./lib",
"strict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"lib": ["esnext", "dom", "dom.iterable"],
"preserveSymlinks": true
},
"include": ["src"]
}