forked from svelteness/kit-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 781 Bytes
/
tsconfig.json
File metadata and controls
29 lines (29 loc) · 781 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"alwaysStrict": true,
"checkJs": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"lib": ["dom", "dom.iterable", "es2020"],
"module": "esnext",
"moduleResolution": "node",
"noImplicitAny": false,
"noImplicitReturns": true,
"noUnusedParameters": false,
"noImplicitOverride": true,
"skipLibCheck": true,
"strict": true,
"target": "es2020"
},
"include": ["**/*.ts", "**/*.js", "**/*.cjs"],
"exclude": [
"node_modules",
"packages/kit-docs/client",
"packages/kit-docs/node",
"packages/kit-docs/globals.d.ts",
"packages/kit-docs/index.d.ts"
]
}