Listory/tsconfig.json

18 lines
376 B
JSON
Raw Normal View History

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