-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 984 Bytes
/
Copy pathtsconfig.json
File metadata and controls
33 lines (33 loc) · 984 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
{
"compilerOptions": {
"outDir": "lib",
"sourceMap": true,
"strict": true,
"module": "esnext",
"target": "es5",
"jsx": "preserve",
"jsxFactory": "h",
"moduleResolution": "node",
"strictPropertyInitialization": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": false,
"strictNullChecks": true,
"importHelpers": true,
"listFiles": false,
"removeComments": false,
"suppressImplicitAnyIndexErrors": true,
"allowJs": true,
"lib": ["es2015", "es2016", "es2017", "dom"],
"baseUrl": ".",
"paths": {
"tvue": ["src/index.ts"]
}
},
"include": ["src", "test", "example"],
"exclude": ["node_modules", "dist"]
}