+17
tsconfig.json
+17
tsconfig.json
···
1
+
{
2
+
"compilerOptions": {
3
+
"target": "ES2020",
4
+
"module": "ES2020",
5
+
"lib": ["ES2020"],
6
+
"outDir": "./",
7
+
"rootDir": "./",
8
+
"strict": true,
9
+
"esModuleInterop": true,
10
+
"skipLibCheck": true,
11
+
"forceConsistentCasingInFileNames": true,
12
+
"resolveJsonModule": true,
13
+
"moduleResolution": "node"
14
+
},
15
+
"include": ["script.ts"],
16
+
"exclude": ["node_modules"]
17
+
}