forked from fielding/svelte-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
38 lines (38 loc) · 1 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
{
"include": ["src/**/*"],
// "exclude": ["node_modules/*"],
"compilerOptions": {
"target": "ES2015",
"module": "esnext",
"removeComments": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": "./src",
"paths": {
"~/*": ["./*"],
"types": ["svelte"],
},
"typeRoots": [ /* List of folders to include type definitions from. */
// "src/@types",
"node_modules/@types/jest",
"node_modules/svelte/types"
],
"types": [
"@types/jest",
"svelte",
"@types/testing-library__jest-dom"
],
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
}
}