/
dedaMazai
/
reactGoodPattern
Обзор
Документация
Войти
/
dedaMazai
/
reactGoodPattern
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tsconfig.json
30 строк
702 B
Andrei Chipizubov
fix
24 май 2023, 13:27
24 май 2023, 13:27
50f812d
Код
Авторство
О чём код?
{ "compilerOptions": { "outDir": "./dist/", "noImplicitAny": true, "noImplicitReturns": true, "module": "ESNext", "target": "es5", "jsx": "react-jsx", "allowJs": true, "moduleResolution": "node", "baseUrl": ".", "paths": { "@/*": ["./src/*"] }, "strict": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "isolatedModules": true }, "ts-node": { "compilerOptions": { "module": "CommonJS" } }, "include": [ "./config/jest/setupTests.ts", "./src/**/*.ts", "./src/**/*.tsx", ], }