Skip to content

Commit bf6a895

Browse files
committed
Scripting compiler config
1 parent abd883a commit bf6a895

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed
Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
// This is just for the IDE to tell it the typescript level
2-
// See build-scripting.sh for the tsc options.
31
{
4-
"compilerOptions": {
5-
"target": "es2020",
6-
// "module": "es2022",
7-
// "moduleResolution": "node",
8-
"strict": true
9-
}
2+
"compilerOptions": {
3+
"target": "es2020",
4+
"module": "es2020",
5+
"moduleResolution": "node",
6+
"outDir": "./dist",
7+
"rootDir": "./",
8+
"strict": true,
9+
"esModuleInterop": true,
10+
"skipLibCheck": true
11+
},
12+
"include": ["./**/*.ts"],
13+
"exclude": ["node_modules"]
1014
}

0 commit comments

Comments
 (0)