-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 892 Bytes
/
tsconfig.json
File metadata and controls
34 lines (34 loc) · 892 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
27
28
29
30
31
32
33
34
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"strict": false,
"sourceMap": true,
"jsx": "preserve",
"allowJs": true,
"lib": ["es2015", "dom"],
"baseUrl": "./",
"paths": {
"@/*": ["docs/*"],
"@/scripts": ["docs/scripts"],
"public": ["docs/public/"],
"components": ["docs/components"]
},
"allowSyntheticDefaultImports": true,
// Gives error if there are implied "<any>" types.
"noImplicitAny": true
// Allows you to access non-constant properties, such as object[keyVar]
// "suppressImplicitAnyIndexErrors": true
},
"exclude": ["node_modules"],
"include": [
"docs/.vuepress/**/*.ts",
"docs/.vuepress/**/*.mts",
"docs/.vuepress/**/*.d.ts",
"docs/.vuepress/**/*.tsx",
"docs/.vuepress/**/*.vue",
"docs/.vuepress/**/*.glsl",
"docs/scripts",
"**/*.ts"
]
}