thelounge/tsconfig.base.json
2022-05-21 11:49:34 -07:00

24 lines
688 B
JSON

{
"compilerOptions": {
"declaration": true,
// "lib": ["es2019" ],
"module": "commonjs",
"target": "ESNext",
"rootDir": ".",
"baseUrl": ".",
"allowJs": true,
"noImplicitAny": false,
"checkJs": true,
"resolveJsonModule": true,
"composite": true,
"strict": true /* Enable all strict type-checking options. */,
"typeRoots": ["./src/types/"],
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
},
"files": ["./package.json", "./src/**/*.d.ts"]
}