-
Notifications
You must be signed in to change notification settings - Fork 22
/
tsconfig.json
35 lines (35 loc) · 996 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
{
"extends": "@tsconfig/svelte/tsconfig.json",
"compilerOptions": {
"moduleResolution": "node",
"lib": ["esnext", "dom", "dom.Iterable"],
"target": "esnext",
"importsNotUsedAsValues": "error",
"sourceMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"allowJs": false,
"checkJs": false,
"noEmit": true,
"types": ["svelte", "jest", "cypress", "@testing-library/cypress"],
"baseUrl": ".",
"rootDirs": ["components", "commons"],
"paths": {
"@nylas/components-*": ["./components/*/src"],
"@commons*": ["./commons/src/*"],
"@commons": ["./commons/src/"]
},
"strict": true,
"strictNullChecks": false,
"skipLibCheck": true,
"resolveJsonModule": true
},
"include": ["commons/**/*", "components/**/**/*", "tests", "mocks"],
"exclude": [
"node_modules/**/*",
"**/node_modules/**/*",
"**/public",
"**/rollup*.config.js",
"**/vue-composer-demo/**/*"
]
}