26 lines
590 B
JSON
26 lines
590 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"include": ["src"],
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": ["esnext"],
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
"importHelpers": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"composite": true,
|
|
"skipLibCheck": true
|
|
}
|
|
}
|