kt-extendscript-builder
Version:
Vite based builder for transpile TypeScript to ExtendScript
47 lines (46 loc) • 1.29 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.tsconfigTestsES3 = exports.tsconfigES3 = void 0;
// src/templates.ts
exports.tsconfigES3 = {
compilerOptions: {
target: 'ES3',
module: 'CommonJS',
outDir: './dist',
rootDir: './src',
strict: true,
esModuleInterop: true,
skipLibCheck: true,
forceConsistentCasingInFileNames: true,
lib: [],
sourceMap: true,
types: [
'kt-core/src/lib/json2',
'types-for-adobe/shared/global',
'types-for-adobe/shared/JavaScript'
]
}
// include: ['src']
};
exports.tsconfigTestsES3 = {
compilerOptions: {
target: 'ES3',
module: 'CommonJS',
outDir: './dist.test',
rootDir: './',
strict: true,
esModuleInterop: true,
skipLibCheck: true,
forceConsistentCasingInFileNames: true,
lib: [],
sourceMap: true,
types: [
'kt-core/src/lib/json2',
'types-for-adobe/shared/global',
'types-for-adobe/shared/JavaScript',
'types-for-adobe/AfterEffects/23.0'
]
},
include: ['src/**/*', 'src/tests/**/*'],
exclude: ['node_modules', 'dist']
};