14 lines
311 B
JSON
14 lines
311 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"outDir": "./dist",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "**/*.spec.ts", "**/*.test.ts"]
|
|
}
|