2
0
mirror of https://github.com/iconify/iconify.git synced 2024-09-20 01:09:04 +00:00
iconify/packages/utils/tsconfig.json

21 lines
402 B
JSON
Raw Normal View History

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