forked from donmccurdy/glTF-Transform
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
31 lines (29 loc) · 870 Bytes
/
tsconfig.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
28
29
30
31
{
"compilerOptions": {
"baseUrl": "./packages",
"paths": {
"@gltf-transform/*": ["*/src"]
},
"esModuleInterop": true,
"moduleResolution": "node",
"lib": ["es6", "dom"],
"target": "es6",
"declaration": true,
"stripInternal": true,
"experimentalDecorators": true,
"typeRoots": ["node_modules/@types"],
// Components of "strict" mode.
"alwaysStrict": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"noImplicitThis": true,
// Certain rules (noImplicitAny, strictNullChecks, strictPropertyInitialization)
// are tightend by sub-package tsconfig. Global tsconfig affects unit tests, and
// I consider those rules too strict for unit tests.
},
"include": [
"packages/*/src/**/*.ts",
// Included to allow TypeDoc to find `pages.ts` content.
"docs/*.ts"
]
}