1
mirror of https://github.com/thepeacockproject/Peacock synced 2024-11-22 22:12:45 +01:00
Peacock/tsconfig.json
2023-04-21 18:08:43 +01:00

36 lines
956 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",
"resources",
"chunk0.js",
"webui",
"tests",
"plugins"
]
}