mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 09:02:28 +01:00
56 lines
1.6 KiB
JSON
56 lines
1.6 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Default",
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"jsx": "react-jsx",
|
|
"module": "ESNext",
|
|
"target": "ES2019",
|
|
"paths": {
|
|
"@/*": [
|
|
"./resources/scripts/*"
|
|
],
|
|
"@definitions/*": [
|
|
"./resources/scripts/api/definitions/*"
|
|
],
|
|
"@feature/*": [
|
|
"./resources/scripts/components/server/features/*"
|
|
]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "typescript-plugin-tw-template"
|
|
}
|
|
],
|
|
|
|
"allowJs": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"composite": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"inlineSources": false,
|
|
"isolatedModules": true,
|
|
"moduleResolution": "Node",
|
|
"newLine": "lf",
|
|
"noEmit": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"preserveWatchOutput": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"stripInternal": true,
|
|
"useDefineForClassFields": true
|
|
},
|
|
"include": ["./resources/scripts/**/*", "vite.config.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|