35 lines
607 B
JSON
35 lines
607 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"module": "CommonJS",
|
|
"declaration": true,
|
|
"stripInternal": true,
|
|
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"moduleResolution": "Node",
|
|
"esModuleInterop": true,
|
|
"baseUrl": "dist",
|
|
"rootDirs": [
|
|
"src",
|
|
"config"
|
|
],
|
|
"sourceRoot": "src",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"outDir": "dist",
|
|
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"src/types"
|
|
],
|
|
"lib": [
|
|
"es2020"
|
|
],
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
} |