saleor-dashboard/tsconfig.json
Karolina Rakoczy fd7813692a
Change way of tagging tests, add stable tag (#2102)
* change tags in tests

* change tags in tests

* add finde-names

* correct critical tag

* fix navigation

* remove comments

* fix config

* fix baseUrl port
2022-06-27 11:30:51 +02:00

21 lines
No EOL
492 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"esModuleInterop": true,
"jsx": "react",
"lib": ["es2017", "dom", "esnext"],
"skipLibCheck": true,
"sourceMap": true,
"target": "es5",
"noUnusedLocals": true,
"noUnusedParameters": true,
"paths": {
"@assets/*": ["assets/*"],
"@locale/*": ["locale/*"],
"@saleor/*": ["src/*"],
"@test/*": ["testUtils/*"]
},
"resolveJsonModule": true
},
"exclude": ["node_modules", "cypress"]
}