18 lines
417 B
JSON
18 lines
417 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"skipLibCheck": true,
|
|
"typeRoots": ["node_modules/@types"]
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|