2
0
mirror of https://github.com/iconify/collections-json.git synced 2024-09-16 17:19:03 +00:00
iconify-collections-json/tsconfig.json

20 lines
353 B
JSON
Raw Normal View History

2021-09-13 15:57:27 +00:00
{
"compilerOptions": {
2023-05-31 20:52:27 +00:00
"target": "ESNext",
"module": "ESNext",
2021-09-16 13:33:04 +00:00
"lib": ["ESNext"],
2021-09-13 15:57:27 +00:00
"esModuleInterop": true,
"strict": true,
"strictNullChecks": true,
"moduleResolution": "Node",
"resolveJsonModule": true,
2023-05-31 20:52:27 +00:00
"skipLibCheck": true
2021-09-13 15:57:27 +00:00
},
"exclude": [
"**/dist",
"**/node_modules",
2021-09-16 13:33:04 +00:00
"**/test",
"dist"
2021-09-13 15:57:27 +00:00
]
}