/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
compiler/packages/react-compiler-runtime/tsconfig.json
23 строки
633 B
Joe Savona
Rename react-compiler-runtime
03 май 2024, 03:14
03 май 2024, 03:14
82137ec
Код
Авторство
О чём код?
{ "extends": "@tsconfig/strictest/tsconfig.json", "compilerOptions": { "module": "ES2015", "moduleResolution": "Bundler", "declaration": true, "outDir": "dist", "jsx": "react-jsxdev", // weaken strictness from preset "importsNotUsedAsValues": "remove", "noUncheckedIndexedAccess": false, "noUnusedParameters": false, "useUnknownInCatchVariables": false, "target": "ES2015", // ideally turn off only during dev, or on a per-file basis "noUnusedLocals": false, "sourceMap": true, "removeComments": true }, "exclude": ["node_modules"], "include": ["src/**/*.ts"] }