lib/tsconfig.json

16 lines
362 B
JSON

{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"declaration": true,
"outDir": "./lib",
"strict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"lib": ["ESNext"]
},
"include": ["src"],
"exclude": ["node_modules"]
}