/
githubmirror
/
nativefier
Обзор
Документация
Войти
/
githubmirror
/
nativefier
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
shared/tsconfig.json
18 строк
468 B
Adam Weeden
Make app strict TypeScript + linting (and add a shared project) (#1231)
26 июн 2021, 16:59
Не верифицирован
26 июн 2021, 16:59
b74c0bf
Код
Авторство
О чём код?
{ "extends": "../tsconfig-base.json", "compilerOptions": { "composite": true, "outDir": "./lib", // Here we want to set target and lib to the *worst* of app/tsconfig.json and src/tsconfig.json // (plus "dom"), because shared code will run both in CLI Node and app Node. // See comments in app/tsconfig.json and src/tsconfig.json "target": "es2018", "lib": [ "es2018", "dom" ] }, "include": [ "./src/**/*" ], }