lib/tsconfig.json

15 lines
332 B
JSON
Raw Normal View History

2021-03-03 00:57:41 +00:00
{
"compilerOptions": {
"target": "es6",
2021-03-03 00:57:41 +00:00
"module": "commonjs",
"declaration": true,
"outDir": "./lib",
"strict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"lib": ["ESNext"]
2021-03-03 00:57:41 +00:00
},
"include": ["src"],
"exclude": ["node_modules"]
}