create-kt-plugin
Version:
A template for creating a KT plugins for ExtendScript
23 lines (22 loc) • 709 B
JSON
{
"compilerOptions": {
"target": "ES3",
"module": "CommonJS",
"outDir": "./dist.test",
"rootDir": "./",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"lib": [],
"sourceMap": true,
"types": [
"./node_modules/kt-core/src/lib/json2",
"./node_modules/types-for-adobe/shared/global",
"./node_modules/types-for-adobe/shared/JavaScript",
"./node_modules/types-for-adobe/AfterEffects/23.0"
]
},
"include": ["src/**/*", "src/tests/**/*"],
"exclude": ["node_modules", "dist"]
}