-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
41 lines (41 loc) · 1.01 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
{
"ts-node": {
// these options are overrides used only by ts-node
"compilerOptions": {
"module": "commonjs",
"types": ["node"]
}
},
"compilerOptions": {
"module": "esnext",
"target": "ES6",
"lib": ["es2019", "dom", "dom.iterable"],
"declaration": false,
"outDir": "./types",
"strict": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": false,
"skipLibCheck": true,
"types": ["vite/client", "@types/chromecast-caf-sender"]
},
"include": ["src/**/*.ts", "global.d.ts"],
"exclude": ["src/**/*.test.ts"],
"mdx": {
"plugins": [
[
"remark-frontmatter",
["toml", "yaml"]
],
"remark-gfm"
]
}
}