-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 752 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 752 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
{
"include": ["env.d.ts", "src/**/*"],
"compilerOptions": {
"module": "esnext",
"moduleResolution": "node",
"lib": ["es2020", "dom", "dom.iterable"],
"target": "es2020",
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"useDefineForClassFields": false,
"paths": {
"@/*": ["./src/*"]
},
"noEmit": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"strict": true,
"noImplicitAny": false,
"skipLibCheck": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"plugins": [
{
"name": "ts-lit-plugin"
}
]
}
}