20 lines
479 B
JSON
20 lines
479 B
JSON
|
|
{
|
||
|
|
"extends": "../../tsconfig.base.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"module": "NodeNext",
|
||
|
|
"moduleResolution": "NodeNext",
|
||
|
|
"target": "ES2022",
|
||
|
|
"lib": ["ES2022"],
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": "./src",
|
||
|
|
"baseUrl": "./src",
|
||
|
|
"declaration": false,
|
||
|
|
"sourceMap": true,
|
||
|
|
"incremental": true,
|
||
|
|
"noEmit": false,
|
||
|
|
"jsx": "preserve"
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts"],
|
||
|
|
"exclude": ["node_modules", "dist", "test", "**/*.spec.ts", "**/*.test.ts"]
|
||
|
|
}
|