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