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,
|
|
|
|
"stripInternal": true
|
|
|
|
},
|
|
|
|
"include": ["components"],
|
2023-03-21 01:19:26 +01:00
|
|
|
"exclude": ["packaging", "chunk0.js", "webui", "tests"]
|
2022-10-20 03:18:35 +02:00
|
|
|
}
|