Files
gsap-carousel/tsconfig.json

42 lines
702 B
JSON
Raw Normal View History

{
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": true,
"module": "ESNext",
"target": "es5",
"jsx": "react-jsx",
"allowJs": true,
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
],
"*": [
"./src/*"
]
},
2025-11-23 13:46:48 +03:00
"strict": true,
"types": [
"node",
"jest",
"@testing-library/jest-dom"
]
},
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
},
"include": [
"src",
"src/**/*",
],
"exclude": [
".fttemplates/**/*",
"node_modules",
"dist"
]
}