Pterodactyl-Panel/tsconfig.json

22 lines
344 B
JSON
Raw Normal View History

2018-12-16 23:30:21 +01:00
{
"compilerOptions": {
2018-12-30 04:24:09 +01:00
"target": "es6",
2018-12-16 23:30:21 +01:00
"strict": true,
2018-12-30 04:24:09 +01:00
"noImplicitReturns": true,
2018-12-16 23:30:21 +01:00
"moduleResolution": "node",
"lib": [
2018-12-30 04:24:09 +01:00
"es2016",
"dom"
2019-02-03 03:49:51 +01:00
],
"baseUrl": ".",
"paths": {
"@/*": [
"./resources/assets/scripts/*"
]
}
2018-12-16 23:30:21 +01:00
},
"include": [
2018-12-30 04:24:09 +01:00
"./resources/assets/scripts/**/*"
2018-12-16 23:30:21 +01:00
]
}