/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
tsconfig.json
32 строки
672 B
italo jose
refactor: update tsconfig include paths to exclude tools and consolidate type definitions
07 апр 2026, 19:17
07 апр 2026, 19:17
64c8775
Код
Авторство
О чём код?
{ "compilerOptions": { "target": "es2020", "module": "commonjs", "strict": true, "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "outDir": "./dist", "noEmit": true, "allowJs": true, "checkJs": false, "moduleResolution": "node", "typeRoots": [ "./node_modules/@types", "./types" ] }, "include": [ "packages/**/*.ts", "packages/**/*.d.ts" ], "exclude": [ "node_modules", "**/node_modules/**", "**/.npm/**", "tools/static-assets/skel*/**", "tools/static-assets/scaffolds*/**", "tools/tests/**", "tools/modern-tests/**" ] }