react-moveable
Version:
A React Component that create Moveable, Draggable, Resizable, Scalable, Rotatable, Warpable, Pinchable, Groupable.
48 lines (47 loc) • 1.19 kB
JSON
{
"compilerOptions": {
"outDir": "./outjs/",
"esModuleInterop": false,
"sourceMap": true,
"module": "esnext",
"target": "es5",
"experimentalDecorators": true,
"skipLibCheck": true,
"moduleResolution": "node",
"jsx": "preserve",
"lib": [
"es2019",
"es2015",
"dom"
],
"allowJs": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@/stories/*": [
"./stories/*"
],
"@/react-moveable": [
"./src/react-moveable/"
],
"moveable-helper": [
"./stories/moveable-helper/"
]
}
},
"include": [
"./src/**/*.ts",
"./src/**/*.tsx",
"./test/**/*.ts",
"./test/**/*.tsx",
"./global.d.ts",
"./stories/**/*.ts",
"./stories/**/*.tsx"
]
}