tsconfig-jaid
Version:
Extendable TypeScript config for my Node projects.
37 lines • 638 B
JSON
{
"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,
"lib": [
"esnext"
],
"paths": {
"lib/*": [
"src/lib/*"
],
"src/*": [
"src/*"
],
"root/*": [
"*"
]
}
}
}