mirror of
https://github.com/thepeacockproject/Peacock
synced 2024-11-22 22:12:45 +01:00
29 lines
878 B
JSON
29 lines
878 B
JSON
{
|
|
"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"],
|
|
"exclude": ["packaging", "chunk0.js", "webui", "tests"]
|
|
}
|