This commit is contained in:
Kristján Oddsson 2020-04-23 16:59:08 +01:00
Родитель dab59dd344
Коммит c8cae5d8a9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F5C58CF9F8FE5D63
1 изменённых файлов: 17 добавлений и 0 удалений

17
tsconfig.json Normal file
Просмотреть файл

@ -0,0 +1,17 @@
{
"include": ["src"],
"compilerOptions": {
"strict": true,
"module": "ESNext",
"esModuleInterop": true,
"lib": ["es6", "dom", "dom.iterable"],
"target": "ES2020",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"rootDir": "src",
"outDir": "dist"
}
}