20 lines
332 B
JSON
20 lines
332 B
JSON
|
{
|
||
|
"extends": "../tsconfig",
|
||
|
"compilerOptions": {
|
||
|
"rootDir": "src",
|
||
|
"outDir": "build-module",
|
||
|
"declaration": true,
|
||
|
"declarationMap": true,
|
||
|
"declarationDir": "./build-types",
|
||
|
"resolveJsonModule": true,
|
||
|
"typeRoots": [
|
||
|
"./node_modules/@types"
|
||
|
]
|
||
|
},
|
||
|
"include": [
|
||
|
"**/*.d.ts",
|
||
|
"src/**/*",
|
||
|
"src/**/*.json"
|
||
|
]
|
||
|
}
|