forked from enable3d/enable3d
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 734 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 734 Bytes
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
{
"compilerOptions": {
"rootDir": "./packages",
"baseUrl": "./packages",
"target": "ES2015",
"module": "ES2015",
"lib": ["DOM", "ESNext", "ScriptHost"],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"moduleResolution": "node",
"removeComments": false,
"noUnusedParameters": true,
"noUnusedLocals": false,
"noImplicitThis": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"allowJs": true,
"skipLibCheck": true
},
"include": ["./src/**/*", "./types/**/*"],
"exclude": ["./node_modules/*", "**/node_modules/*", "**/dist/*", "**/*.spec.ts"]
}