room-gallery
Version:
Room Gallery: A 3D carousel - A Responsive 3D Image Slider Implemented in TypeScript as a React Component, Utilizing Vanilla JavaScript and jQuery
35 lines • 729 B
JSON
{
"compilerOptions": {
"moduleResolution": "node",
"esModuleInterop": true,
"outDir": "./build/",
"noImplicitAny": true,
"module": "CommonJS",
"target": "ES6",
"jsx": "react",
"declaration": true,
"declarationMap": true,
"declarationDir": "build",
"rootDir": "src",
"strict": true,
"lib": [
"esnext",
"dom"
],
"allowJs": true,
"baseUrl": "./",
"paths": {
"@components/*": ["src/components/*"],
},
},
"include": ["src/**/*", "src/index.tsx"],
"exclude": [
"node_modules",
"**/*.spec.ts",
"build",
"examples",
"src/demo.tsx",
"src/jquery.tsx",
"src/RoomGallery.tsx"
]
}