think/packages/domains/tsconfig.json

18 lines
394 B
JSON
Raw Normal View History

2022-02-20 11:51:55 +00:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2017",
"sourceMap": true,
"incremental": true,
"rootDir": "src",
"outDir": "lib"
},
"include": ["src"],
"exclude": ["src/**/*.spec.ts"]
}