skolplattformen-backup/tsconfig.json

14 lines
307 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,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true
2020-12-19 12:37:45 +00:00
},
2020-12-20 19:58:52 +00:00
"include": ["lib"],
"exclude": ["node_modules", "**/__tests__/*", "**/*.test.ts"]
2020-12-19 12:37:45 +00:00
}