Listory/tsconfig.json

18 lines
384 B
JSON
Raw Permalink Normal View History

2020-01-25 22:19:14 +01:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "ES2022",
2020-01-25 22:19:14 +01:00
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"paths": {},
2020-01-25 22:19:14 +01:00
},
"exclude": ["node_modules", "dist"],
"include": ["src", "test"]
}