mirror of
https://github.com/Shopify/draggable.git
synced 2025-12-08 20:15:56 +00:00
24 lines
541 B
JSON
24 lines
541 B
JSON
{
|
|
"extends": "@shopify/typescript-configs/library",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "build/ts",
|
|
"rootDir": "./",
|
|
"strictFunctionTypes": false,
|
|
"emitDecoratorMetadata": false,
|
|
"experimentalDecorators": false,
|
|
"paths": {
|
|
"shared/*": ["./src/shared/*"],
|
|
"helper": ["./test/helper.ts"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./config/typescript/**/*",
|
|
"./src/**/*",
|
|
"./test/**/*",
|
|
"./rollup.config.ts",
|
|
"./rollup.development.config.ts"
|
|
]
|
|
}
|