mirror of
https://github.com/chenasraf/simple-scaffold.git
synced 2026-05-17 17:28:09 +00:00
23 lines
503 B
JSON
23 lines
503 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"rootDir": "./src",
|
|
"esModuleInterop": true,
|
|
"lib": ["ESNext"],
|
|
"declaration": true,
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"removeComments": false,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src/index.ts", "src/cmd.ts"],
|
|
"exclude": ["tests/*"]
|
|
}
|