misc_pterodactyl-panel/tsconfig.json
2021-09-12 15:56:47 -06:00

45 lines
1.1 KiB
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"jsx": "react",
"moduleResolution": "Node",
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"strict": true,
"noEmit": true,
"sourceMap": true,
"noImplicitReturns": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"importsNotUsedAsValues": "preserve",
"paths": {
"@/*": [
"./resources/scripts/*"
],
"@feature/*": [
"./resources/scripts/components/server/features/*"
]
},
"plugins": [
{
"name": "typescript-plugin-tw-template"
}
],
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"./resources/scripts/**/*"
],
"exclude": [
"/node_modules/"
]
}