TeaWeb/shared/tsconfig/tsconfig.declarations.json

46 lines
1.0 KiB
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"jsx": "react",
"experimentalDecorators": true,
"declarationDir": "../../declarations/shared-app/",
"declaration": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"skipLibCheck": true,
"baseUrl": "../../",
"paths": {
"tc-shared/*": [
"shared/js/*"
],
"tc-loader": [
"loader/exports/loader.d.ts"
],
"svg-sprites/*": [
"shared/svg-sprites/*"
],
"vendor/xbbcode/*": [
"vendor/xbbcode/src/*"
],
"tc-events": [
"vendor/TeaEventBus/src/index.ts"
],
"tc-services": [
"vendor/TeaClientServices/src/index.ts"
]
}
},
"exclude": [
"../js/workers"
],
"include": [
"../js/proto.ts",
"../js/main.tsx",
"../backend.d",
2021-01-08 20:41:26 +00:00
"../js/**/*.ts",
"../../webpack/build-definitions.d.ts",
"../../vendor/TeaEventBus/src/**/*.ts",
"../../vendor/TeaClientServices/src/**/*.ts"
]
}