29 lines
619 B
JSON
29 lines
619 B
JSON
![]() |
{
|
||
|
"extends": "../../tsconfig.json",
|
||
|
"compilerOptions": {
|
||
|
"outDir": "./dist",
|
||
|
"rootDir": "./src",
|
||
|
"declaration": true,
|
||
|
"declarationMap": true,
|
||
|
"sourceMap": true,
|
||
|
"target": "ES2020",
|
||
|
"module": "ESNext",
|
||
|
"moduleResolution": "bundler",
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"esModuleInterop": true,
|
||
|
"strict": true,
|
||
|
"skipLibCheck": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"isolatedModules": true,
|
||
|
"noEmitOnError": false
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"dist",
|
||
|
"node_modules",
|
||
|
"**/*.test.ts",
|
||
|
"**/*.spec.ts"
|
||
|
]
|
||
|
}
|