forked from andreasbm/router-slot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
44 lines (44 loc) · 906 Bytes
/
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
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"emitDecoratorMetadata": false,
"newLine": "LF",
"outDir": "./src/lib",
"rootDir": "./src/lib",
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"allowJs": false,
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noEmitOnError": true,
"strictNullChecks": true,
"experimentalDecorators": true,
"strict": true,
"lib": [
"es2015.promise",
"dom",
"scripthost",
"es7",
"es6",
"es2017",
"es2017.object",
"es2015.proxy",
"esnext"
],
"types": ["vite/client", "mocha"],
"plugins": [
{
"name": "ts-lit-plugin"
}
]
},
"exclude": [
"dist", "src/test", "src/demo", "rollup.config.ts", "node_modules", "vite.config.ts"
]
}