vCarousel/tsconfig.json

16 lines
342 B
JSON
Raw Permalink Normal View History

2021-03-31 18:14:03 +02:00
{
"compilerOptions":
{
"outDir": "./src/build",
"module": "ES6",
2021-05-18 12:17:38 +02:00
"target": "es5",
"strict":true,
"removeComments": true,
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
},
"include": ["src/*", "src/demo/*"],
2022-12-28 10:45:32 +01:00
"exclude": ["src/build"]
2021-03-31 18:14:03 +02:00
}