generated from UstymUkhman/threejs-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
65 lines (56 loc) · 1.23 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
55
56
57
58
59
60
61
62
63
64
65
{
"compilerOptions": {
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"typeRoots": ["node_modules/@types"],
"jsxImportSource": "solid-js",
"verbatimModuleSyntax": true,
"noUnusedParameters": false,
"noImplicitOverride": true,
"moduleResolution": "node",
"noImplicitReturns": true,
"resolveJsonModule": true,
"strictNullChecks": true,
"lib": ["esnext", "dom"],
"esModuleInterop": true,
"noUnusedLocals": true,
"importHelpers": true,
"noImplicitAny": true,
"skipLibCheck": true,
"module": "ESNext",
"target": "ESNext",
"sourceMap": true,
"jsx": "preserve",
"types": ["node"],
"allowJs": true,
"checkJs": true,
"baseUrl": ".",
"strict": true,
"noEmit": true,
"paths": {
"@assets/*": ["src/assets/*"],
"@scss/*": ["src/scss/*"],
"@/*": ["src/*"]
}
},
"include": [
"src/**/*.js",
"src/**/*.ts",
"src/**/*.jsx",
"src/**/*.tsx",
"src/**/*.d.ts",
"tests/**/*.js",
"tests/**/*.ts",
"tests/**/*.jsx",
"tests/**/*.tsx",
"tests/**/*.d.ts"
],
"exclude": [
"node_modules",
"typings",
"public",
"build",
"dist",
"app"
]
}