TheSparta 8743824046 general cleanup of config files and build script
- removed "os" devDependency, as it's an internal module and should've never been set as a devDependency in package.json
- general cleanup and restructure of package.json, indent with 4 spaces, moved a few properties around so it's more readable
- indent workspace file with 4 spaces
- added refringe.spt-id-highlighter to the recommended extensions
- removed the "-version" from the zip and folder name the build script was generating
- added /tmp to .eslintignore
2024-05-19 16:52:47 +01:00

19 lines
486 B
JSON

{
"compilerOptions": {
"allowJs": true,
"module": "NodeNext",
"target": "ES2022",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"outDir": "tmp",
"paths": {
"@spt-aki/*": ["./types/*"],
},
},
"exclude": ["node_modules", "dist", "tmp"],
}