2023-01-31 13:38:28 +00:00
|
|
|
{
|
|
|
|
"extends": "../tsconfig",
|
|
|
|
"compilerOptions": {
|
|
|
|
"rootDir": "src",
|
|
|
|
"outDir": "build-module",
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
2023-03-13 14:45:25 +00:00
|
|
|
"declarationDir": "./build-types",
|
2023-03-24 01:02:20 +00:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"typeRoots": [
|
|
|
|
"./typings",
|
|
|
|
"./node_modules/@types"
|
|
|
|
]
|
2023-03-13 18:38:16 +00:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"**/*.d.ts",
|
|
|
|
"src/**/*",
|
|
|
|
"src/**/*.json"
|
|
|
|
]
|
2023-01-31 13:38:28 +00:00
|
|
|
}
|