demo-react-animated-list/tsconfig.json

19 lines
344 B
JSON
Raw Normal View History

2024-08-06 16:26:30 -07:00
{
"compilerOptions": {
"jsx": "preserve",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["DOM", "ESNext"],
"noEmit": true,
"alwaysStrict": true
2024-08-06 17:21:12 -07:00
},
2024-08-06 17:49:02 -07:00
"include": [
"*.ts",
"*.tsx",
"src/index.tsx",
"src/AnimatedListDemo.tsx",
"src/useAnimatedListItems.ts"
]
2024-08-06 16:26:30 -07:00
}