Listory/tsconfig.json

18 lines
406 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "ES2020",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"paths": {},
"lib": ["ES2020"]
},
"exclude": ["node_modules", "dist"],
"include": ["src", "test"]
}