UNPKG

tsconfig-jaid

Version:

Extendable TypeScript config for my Node projects.

49 lines 855 B
{ "include": [ "../../*", "../../src/**/*", "../../test/**/*", "../../etc/**/*" ], "typeAcquisition": { "enable": true }, "compilerOptions": { "composite": true, "baseUrl": "../..", "outDir": "../../out/ts", "skipLibCheck": true, "newLine": "lf", "module": "nodenext", "moduleResolution": "nodenext", "target": "es2022", "strictNullChecks": true, "allowArbitraryExtensions": true, "typeRoots": [ "../../src/types" ], "lib": [ "esnext", "dom", "webworker" ], "paths": { "lib/*": [ "src/lib/*" ], "component/*": [ "src/components/*/index.tsx" ], "etc/*": [ "etc/*" ], "src/*": [ "src/*" ], "root/*": [ "*" ] }, "jsx": "react-jsx" } }