misc_pterodactyl-panel/tsconfig.json

22 lines
344 B
JSON
Raw Normal View History

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