fix polyfill.d.ts

This commit is contained in:
Wang Kejun 2023-09-13 14:09:20 +08:00
parent c1587854ec
commit 85c79337a5
3 changed files with 9 additions and 11 deletions

View File

@ -72,11 +72,10 @@
]
},
"include": [
"./**/*.ts",
"./**/*.tsx",
"./**/*.less",
"./**/*.wxml",
"./**/*.json"
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.json",
"./typings/*.d.ts"
],
"exclude": [
"lib",

View File

@ -72,11 +72,10 @@
]
},
"include": [
"./**/*.ts",
"./**/*.tsx",
"./**/*.less",
"./**/*.wxml",
"./**/*.json"
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.json",
"./typings/*.d.ts"
],
"exclude": [
"lib",

View File

@ -1,6 +1,6 @@
import { MakeOakComponent } from '../src/types/Page';
import { EntityDict } from '../src/oak-app-domain';
import { AspectDict } from '../src/aspects/AspectDict';
import { GeneralAspectDict as AspectDict } from '../src/aspects/AspectDict';
import { GeneralFeatures } from '../src/features';
import { FrontendRuntimeContext } from '../src/context/FrontendRuntimeContext';
import { BackendRuntimeContext } from '../src/context/BackendRuntimeContext';