File tree Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 66.gitignore
77tsconfig.json
88.eslintrc
9- distDeletor.js
9+ distDeletor.mjs
1010
1111# Hidden folders
1212/.vscode
File renamed without changes.
Original file line number Diff line number Diff line change 33 "version" : " 0.0.1-alpha" ,
44 "description" : " Compiler used to compile Syntax Script projects." ,
55 "main" : " dist/index.js" ,
6- "types" : " dist/types .d.ts" ,
6+ "types" : " dist/index .d.ts" ,
77 "scripts" : {
88 "lint" : " eslint ./src/**/*.ts" ,
9- "prebuild" : " npm run lint && node distDeletor.js " ,
9+ "prebuild" : " npm run lint && node distDeletor.mjs " ,
1010 "build" : " tsc" ,
11- "postbuild" : " cls && dts-bundle-generator src/index.ts -o dist/types.d.ts && echo Builded" ,
11+ "postbuild" : " cls && echo Builded" ,
1212 "prepack" : " npm run build"
1313 },
1414 "repository" : {
4040 "@typescript-eslint/parser" : " ^7.4.0" ,
4141 "eslint" : " ^8.57.0" ,
4242 "eslint-plugin-jsdoc" : " ^48.2.3"
43- },
44- "type" : " module"
43+ }
4544}
Original file line number Diff line number Diff line change 11{
22 "compilerOptions" : {
3- "module" : " NodeNext " ,
3+ "module" : " CommonJS " ,
44 "rootDir" : " ./src" ,
55 "outDir" : " ./dist" ,
6- "moduleResolution" : " nodenext " ,
6+ "moduleResolution" : " Classic " ,
77 "target" : " ESNext" ,
88 "skipLibCheck" : true ,
9- "allowUnreachableCode" : false
9+ "allowUnreachableCode" : false ,
10+ "declaration" : true ,
11+ "declarationMap" : true
1012 },
1113 "exclude" : [" ./syx/**/*" ],
1214 "include" : [" ./src" ]
You can’t perform that action at this time.
0 commit comments