2022-10-20 03:18:35 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"declaration": true,
|
|
|
|
"target": "ES2021",
|
|
|
|
"module": "commonjs",
|
|
|
|
"lib": ["ESNext"],
|
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
"checkJs": false,
|
|
|
|
"strict": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"typeRoots": ["./components/types", "./node_modules/@types"],
|
|
|
|
"baseUrl": ".",
|
|
|
|
"rootDir": "components",
|
|
|
|
"outDir": "./build",
|
|
|
|
"isolatedModules": true,
|
2023-04-16 20:11:49 +02:00
|
|
|
"stripInternal": true
|
2022-10-20 03:18:35 +02:00
|
|
|
},
|
|
|
|
"include": ["components"],
|
2023-04-21 19:08:43 +02:00
|
|
|
"exclude": [
|
|
|
|
"packaging",
|
|
|
|
"resources",
|
|
|
|
"chunk0.js",
|
|
|
|
"webui",
|
|
|
|
"tests",
|
|
|
|
"plugins"
|
|
|
|
]
|
2022-10-20 03:18:35 +02:00
|
|
|
}
|