via-icons/tsconfig.json

23 lines
492 B
JSON
Raw Normal View History

{
"compilerOptions": {
2024-07-28 22:55:15 -06:00
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
},
"outDir": "./dist",
2024-07-28 22:55:15 -06:00
"declaration": true,
"declarationDir": "./dist",
"emitDeclarationOnly": false,
2024-07-28 22:55:15 -06:00
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"module": "ESNext",
"target": "ESNext",
"jsx": "react",
2024-07-28 22:55:15 -06:00
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true
},
2024-07-28 22:55:15 -06:00
"include": ["src/**/*.tsx", "src/**/*.ts"]
}