kill-the-newsletter/tsconfig.json

20 lines
368 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/",
2022-10-31 20:37:52 +01:00
"outDir": "./build/",
2021-03-09 23:04:05 +01:00
2022-10-13 22:06:00 +02:00
"module": "ESNext",
"moduleResolution": "NodeNext",
2022-10-31 20:37:52 +01:00
"esModuleInterop": true,
2022-10-13 22:06:00 +02:00
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"skipLibCheck": 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
}
}