misc_pterodactyl-panel/tsconfig.json

23 lines
421 B
JSON
Raw Normal View History

2018-12-16 14:30:21 -08:00
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"jsx": "react",
2018-12-16 14:30:21 -08:00
"strict": true,
2018-12-29 19:24:09 -08:00
"noImplicitReturns": true,
2018-12-16 14:30:21 -08:00
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"sourceMap": true,
2019-02-02 18:49:51 -08:00
"baseUrl": ".",
"lib": ["es2015", "dom"],
2019-02-02 18:49:51 -08:00
"paths": {
"@/*": [
"./resources/scripts/*"
2019-02-02 18:49:51 -08:00
]
}
2018-12-16 14:30:21 -08:00
},
"include": [
"./resources/scripts/**/*"
2018-12-16 14:30:21 -08:00
]
}