diff options
| author | bobzel <zzzman@gmail.com> | 2023-03-15 22:33:22 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-03-15 22:33:22 -0400 |
| commit | 0e55893d0f7f2a0aa5098df73d0ece5a7f1a4ddf (patch) | |
| tree | 2d41dc50c4b3bb4fa2b08172f21508c617cfa28b /tsconfig.json | |
| parent | 20c0190e820f2bd343693368b7ef55a91f19c880 (diff) | |
fixed up Clone() and export/import collection to work with links, presentations, and contexts better.
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 24 |
1 files changed, 6 insertions, 18 deletions
diff --git a/tsconfig.json b/tsconfig.json index 993ab13b9..bff9255db 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,34 +2,22 @@ "compilerOptions": { "target": "es5", "downlevelIteration": true, - // "module": "system", "removeComments": true, "experimentalDecorators": true, "allowSyntheticDefaultImports": true, + "moduleDetection": "auto", "strict": true, "jsx": "react", "allowJs": true, "sourceMap": true, "outDir": "dist", - "lib": [ - "dom", - "es2015" - ], - "typeRoots": [ - "node_modules/@types", - "./src/typings" - ], - "types": [ - "youtube", - "node" - ] + "lib": ["dom", "es2015"], + "typeRoots": ["node_modules/@types", "./src/typings"], + "types": ["youtube", "node"] }, // "exclude": [ // "node_modules", // "static" // ], - "typeRoots": [ - "./node_modules/@types", - "./src/typings" - ] -}
\ No newline at end of file + "typeRoots": ["./node_modules/@types", "./src/typings"] +} |
