misc_pterodactyl-panel/tsconfig.json

22 lines
379 B
JSON
Raw Normal View History

2018-12-16 22:30:21 +00:00
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"jsx": "react",
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",
"sourceMap": true,
2019-02-03 02:49:51 +00:00
"baseUrl": ".",
"lib": ["es2015", "dom"],
2019-02-03 02:49:51 +00:00
"paths": {
"@/*": [
"./resources/scripts/*"
2019-02-03 02:49:51 +00:00
]
}
2018-12-16 22:30:21 +00:00
},
"include": [
"./resources/scripts/**/*"
2018-12-16 22:30:21 +00:00
]
}