├── .gitignore ├── .swcrc ├── .vscode ├── extensions.json └── launch.json ├── LICENSE ├── README.md ├── package.json ├── spack.config.js ├── src ├── another.ts └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/adobe-script-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.swcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/adobe-script-starter/HEAD/.swcrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["adobe.extendscript-debug"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/adobe-script-starter/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/adobe-script-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/adobe-script-starter/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/adobe-script-starter/HEAD/package.json -------------------------------------------------------------------------------- /spack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/adobe-script-starter/HEAD/spack.config.js -------------------------------------------------------------------------------- /src/another.ts: -------------------------------------------------------------------------------- 1 | export const message = "From another!"; 2 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/adobe-script-starter/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/adobe-script-starter/HEAD/tsconfig.json --------------------------------------------------------------------------------