-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtsconfig.npm.json
27 lines (27 loc) · 924 Bytes
/
tsconfig.npm.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"compilerOptions": {
"importHelpers": true,
"moduleResolution": "node",
"module": "ES2020",
"target": "es2021", // esnext has an issue with class generation and our decoders. TODO - avoid using decorators until in standard
"declaration": true,
"sourceMap": true,
"inlineSources": true,
"experimentalDecorators": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": false, //was true in babylonjs config
"strictNullChecks": true,
"strictFunctionTypes": true,
"skipLibCheck": true,
"removeComments": false,
"preserveConstEnums": true,
"lib": ["es5", "dom", "es2015.promise", "es2015.collection", "es2015.iterable", "es2015.symbol.wellknown", "es2020.bigint", "es2017"],
"outDir": "./lib"
},
"include": [
"src"],
"exclude": ["node_modules", "**/__tests__/*"]
}