skolplattformen-backup/tsconfig.json

18 lines
298 B
JSON
Raw Normal View History

2020-12-19 12:37:45 +00:00
{
"compilerOptions": {
2020-12-20 19:58:52 +00:00
"target": "ES6",
"module": "CommonJS",
"declaration": true,
"outDir": "./dist",
"strict": true,
"allowSyntheticDefaultImports": true
2020-12-19 12:37:45 +00:00
},
"include": [
"lib"
],
"exclude": [
"node_modules",
"**/__tests__/*",
"**/*.test.ts"
]
}