Skip to content

Commit 52255f5

Browse files
authored
Disable useDefineForClassFields & extra strictness for tsconfig (AssemblyScript#2145)
This speedup typescript compilation significantly
1 parent 8c3cc2a commit 52255f5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
"sourceMap": true,
88
"skipLibCheck": true,
99
"target": "esnext",
10-
"strict": true
10+
"useDefineForClassFields": false,
11+
"strict": true,
12+
"noImplicitReturns": true,
13+
"noPropertyAccessFromIndexSignature": true
1114
},
1215
"include": [
1316
"./**/*.ts"

0 commit comments

Comments
 (0)