2
0
mirror of https://github.com/iconify/iconify.git synced 2025-01-23 15:18:38 +00:00
iconify/packages/utils/tsconfig.json

18 lines
378 B
JSON
Raw Normal View History

{
2021-09-20 23:53:49 +03:00
"compilerOptions": {
2022-03-02 21:11:50 +01:00
"rootDir": "./",
"outDir": "./lib",
2022-03-02 21:11:50 +01:00
"target": "ES2019",
"module": "ESNext",
2022-03-14 16:24:09 +01:00
"lib": ["ESNext", "DOM"],
"strict": true,
"skipLibCheck": true,
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"importsNotUsedAsValues": "error",
"resolveJsonModule": true
},
"include": ["src/**/*.ts"]
}