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