|
|
@@ -1,21 +1,25 @@
|
|
|
{
|
|
|
- "extends": "../../tsconfig.json",
|
|
|
"compilerOptions": {
|
|
|
- "composite": true,
|
|
|
- "rootDir": ".",
|
|
|
- "outDir": "dist",
|
|
|
- "noEmit": false,
|
|
|
- "allowImportingTsExtensions": false,
|
|
|
+ "target": "ES2020",
|
|
|
+ "module": "ESNext",
|
|
|
+ "lib": ["ES2020", "DOM"],
|
|
|
+ "moduleResolution": "bundler",
|
|
|
+ "strict": true,
|
|
|
+ "esModuleInterop": true,
|
|
|
+ "skipLibCheck": true,
|
|
|
+ "forceConsistentCasingInFileNames": true,
|
|
|
"declaration": true,
|
|
|
"declarationMap": true,
|
|
|
- "sourceMap": true
|
|
|
+ "sourceMap": true,
|
|
|
+ "outDir": "./dist",
|
|
|
+ "rootDir": ".",
|
|
|
+ "resolveJsonModule": true,
|
|
|
+ "allowSyntheticDefaultImports": true,
|
|
|
+ "experimentalDecorators": true,
|
|
|
+ "emitDecoratorMetadata": true,
|
|
|
+ "types": ["node"],
|
|
|
+ "baseUrl": ".",
|
|
|
},
|
|
|
- "include": [
|
|
|
- "src/**/*",
|
|
|
- "tests/**/*"
|
|
|
- ],
|
|
|
- "exclude": [
|
|
|
- "node_modules",
|
|
|
- "dist"
|
|
|
- ]
|
|
|
+ "include": ["src/**/*", "tests"],
|
|
|
+ "exclude": ["node_modules", "dist"]
|
|
|
}
|