forked from munozcotelo-trainingcourses/curso-vue3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
executable file
·46 lines (45 loc) · 1.04 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
{
"_comment_": {
"typeRoots": [ "./types", "./node_modules/@types"],
"declaration": true,
"declarationDir": "./types"
},
"awesomeTypescriptLoaderOptions": {
"useCache": true
},
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
"checkJs": true,
"declaration": false,
"target": "es5",
"lib": [
"dom",
"es2015",
"es2015.promise"
],
"module": "esnext",
"moduleResolution": "node",
"experimentalDecorators": true,
"noImplicitAny": false,
"noImplicitThis": false,
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"removeComments": false,
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true
},
"include": [
"src",
"config",
"typings",
"libs/banners"
],
"exclude": [
"node_modules",
"dist",
"test"
],
"compileOnSave": false
}