2
0
mirror of https://github.com/iconify/iconify.git synced 2025-01-22 22:58:27 +00:00
iconify/packages/core/tsconfig.json

18 lines
378 B
JSON
Raw Normal View History

2020-04-28 12:47:35 +03:00
{
"compilerOptions": {
2022-03-14 17:52:34 +02:00
"rootDir": "./",
"outDir": "./lib",
"target": "ES2019",
"module": "ESNext",
"lib": ["ESNext", "DOM"],
"strict": true,
"skipLibCheck": true,
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"importsNotUsedAsValues": "error",
"resolveJsonModule": true
},
"include": ["src/**/*.ts"]
2020-04-28 12:47:35 +03:00
}