-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
54 lines (54 loc) · 1.52 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// tsconfig.json
// See reference: https://www.typescriptlang.org/tsconfig
{
"compilerOptions":
{
"target": "es2017",
"module": "esnext",
"moduleResolution": "node", // Needed to import libs
"lib": ["es6","dom", "webworker"],
"declaration" : true,
"allowJs": true,
"outDir": "dist",
"strict": false,
//"noPropertyAccessFromIndexSignature" : false,
"noImplicitAny": false,
"emitDecoratorMetadata": true,
"experimentalDecorators" : true,
//"useDefineForClassFields": false,
//"esModuleInterop": true,
"allowSyntheticDefaultImports" : true, // fix: This module is declared with using 'export =', and can only be used with a default import when using the 'esModuleInterop' flag.
"sourceMap": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"~/*": ["./*"],
"@/*": ["./*"]
},
"skipLibCheck": true
},
"include" : ["src"], // not working
"exclude": [
"node_modules",
"**/archiyou-opencascade/*.ts", // not working when imported
"typings",
"tests",
"**/*.spec.ts"
],
"ts-node": {
"moduleTypes": {
"jest.config.ts": "cjs"
}
},
// TypeDoc settings: https://typedoc.org/guides/options/
// For standalone API docs only
"typedocOptions":
{
"entryPoints": [
"src/internal.ts",
],
"out": "apidocs",
"name" : "Archiyou Geom API",
"includeVersion" : true
}
}