kill-the-newsletter/tsconfig.json

20 lines
388 B
JSON
Raw Normal View History

2020-03-18 03:19:05 +01:00
{
"compilerOptions": {
2022-10-13 22:06:00 +02:00
"rootDir": "./source/",
"outDir": "./distribution/",
2021-03-09 23:04:05 +01:00
2022-10-13 22:06:00 +02:00
"module": "ESNext",
"moduleResolution": "NodeNext",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"target": "ESNext",
2021-03-09 23:04:05 +01:00
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true
2020-03-18 03:19:05 +01:00
}
}