2
0
mirror of https://github.com/iconify/collections-json.git synced 2024-09-18 18:19:00 +00:00
iconify-collections-json/tsconfig.json
Joaquín Sánchez Jiménez f684a5661a feat: add esm support
2021-09-13 17:57:27 +02:00

21 lines
391 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "es2017",
"lib": ["ESNext", "DOM"],
"esModuleInterop": true,
"strict": true,
"strictNullChecks": true,
"moduleResolution": "Node",
"resolveJsonModule": true,
"skipLibCheck": true,
"jsx": "preserve"
},
"exclude": [
"**/dist",
"**/node_modules",
"**/test"
]
}