mirror of
https://github.com/DreamExposure/DisCal-Discord-Bot.git
synced 2026-05-01 06:39:40 -05:00
e8d013a709
This commit gets typescript compiling to browser-safe javascript using webpack. Also fix some issues regarding handling status endpoints, missed debug and error reports, and cleaning some other things up. Last change involves getting maven to automatically compile typescript and styles for the website without needing to do it in cli before the package
32 lines
564 B
JSON
32 lines
564 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES5",
|
|
"module": "ES6",
|
|
"strict": true,
|
|
"strictPropertyInitialization": false,
|
|
"noImplicitThis": false,
|
|
"removeComments": true,
|
|
"importHelpers": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"types": [
|
|
"jquery"
|
|
],
|
|
"paths": {
|
|
"@/*": [
|
|
"web/src/main/javascript/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"web/src/main/javascript/**/*.ts",
|
|
"web/src/main/javascript/**/*.js"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |