diff options
Diffstat (limited to 'bskylink/tsconfig.json')
-rw-r--r-- | bskylink/tsconfig.json | 27 |
1 files changed, 18 insertions, 9 deletions
diff --git a/bskylink/tsconfig.json b/bskylink/tsconfig.json index 3c382acc4..a13b32033 100644 --- a/bskylink/tsconfig.json +++ b/bskylink/tsconfig.json @@ -1,10 +1,19 @@ { - "compilerOptions": { - "module": "NodeNext", - "esModuleInterop": true, - "moduleResolution": "NodeNext", - "outDir": "dist", - "lib": ["ES2021.String"] - }, - "include": ["./src/index.ts", "./src/bin.ts"] - } + "compilerOptions": { + "target": "ES2020", + "module": "ESNext", + "moduleResolution": "bundler", + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "skipLibCheck": true, + "strict": true, + "outDir": "./dist", + "rootDir": "./src", + "declaration": true, + "declarationMap": true, + "sourceMap": true + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +} + |