- Add 'build/' to .gitignore - Refactor push script for improved directory management and build process - Update package.json and package-lock.json to version 1.0.5 - Change TypeScript module setting to CommonJS in tsconfig.json
15 lines
302 B
JSON
15 lines
302 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src"]
|
|
}
|