Skip to content
This repository was archived by the owner on Dec 17, 2023. It is now read-only.

Commit 3261b46

Browse files
committed
add tsconfig to typescript template
1 parent eab49a0 commit 3261b46

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-djs-app",
3-
"version": "1.1.3",
3+
"version": "1.1.4-dev.1",
44
"description": "Create a Discord.js project easily.",
55
"main": "index.js",
66
"bin": {

templates/typescript/tsconfig.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"compilerOptions": {
3+
"lib": ["ESNext"],
4+
"module": "commonjs",
5+
"moduleResolution": "node",
6+
"target": "ESNext",
7+
"outDir": "dist",
8+
"sourceMap": false,
9+
"esModuleInterop": true,
10+
"experimentalDecorators": true,
11+
"emitDecoratorMetadata": true,
12+
"allowSyntheticDefaultImports": true,
13+
"skipLibCheck": true,
14+
"skipDefaultLibCheck": true,
15+
"resolveJsonModule": true,
16+
"importHelpers": true
17+
},
18+
"include": ["src"],
19+
"exclude": ["node_modules", "**/*.spec.ts"]
20+
}

0 commit comments

Comments
 (0)