tsconfig-jaid
Version:
Extendable TypeScript config for my Node projects.
46 lines • 805 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",
"dom",
"webworker"
],
"paths": {
"component/*": [
"src/components/*/index.tsx"
],
"lib/*": [
"src/lib/*"
],
"etc/*": [
"etc/*"
],
"src/*": [
"src/*"
],
"root/*": [
"*"
]
},
"jsx": "react-jsx"
}
}