diff options
author | hailey <hailey@blueskyweb.xyz> | 2025-09-02 13:36:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-02 13:36:20 -0700 |
commit | acdc509630d5182f9f3d224b259e2a46000b1f27 (patch) | |
tree | 92d6b474bad9692e5b054ed8b693bca1cba816ac /bskylink/tsconfig.json | |
parent | b2258fb6cbdb5de79a7c7d848347f3f157059aa5 (diff) | |
download | voidsky-acdc509630d5182f9f3d224b259e2a46000b1f27.tar.zst |
safelink (#8917)
Co-authored-by: hailey <me@haileyok.com> Co-authored-by: Stanislas Signoud <signez@stanisoft.net> Co-authored-by: will berry <wsb@wills-MBP.attlocal.net> Co-authored-by: BlueSkiesAndGreenPastures <will@blueskyweb.xyz> Co-authored-by: Chenyu Huang <itschenyu@gmail.com>
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"] +} + |