2018-12-16 23:30:21 +01:00
|
|
|
{
|
2022-11-25 21:25:03 +01:00
|
|
|
"$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
|
2020-07-03 22:55:33 +02:00
|
|
|
},
|
2022-11-25 21:25:03 +01:00
|
|
|
"include": ["./resources/scripts/**/*", "vite.config.ts"],
|
|
|
|
"exclude": ["node_modules"]
|
2018-12-16 23:30:21 +01:00
|
|
|
}
|