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