skolplattformen-backup/libs/api-skolplattformen/tsconfig.json

20 lines
365 B
JSON
Raw Normal View History

2020-12-19 12:37:45 +00:00
{
2021-10-05 15:27:47 +00:00
"extends": "../../tsconfig.base.json",
2020-12-19 12:37:45 +00:00
"compilerOptions": {
"target": "ES6",
"module": "CommonJS",
"declaration": true,
"outDir": "./dist",
2021-10-05 15:27:47 +00:00
"strict": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true
2020-12-19 12:37:45 +00:00
},
"include": [
"lib"
],
"exclude": [
"node_modules",
"**/__tests__/*",
"**/__mocks__/*",
]
}