-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
31 lines (31 loc) · 893 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "esnext", "scripthost"],
"locale": "en",
"module": "esnext",
"moduleResolution": "node",
"emitDeclarationOnly": true,
"noImplicitAny": false,
"noResolve": false,
"outDir": "dist/@types/",
"paths": {
"@dots/core": ["./src/core/index.ts"],
"@dots/components": ["./src/components/index.ts"]
},
"removeComments": true,
"skipLibCheck": true,
"strictNullChecks": false,
"sourceMap": false,
"strict": true,
"target": "es6",
"typeRoots": ["node_modules/@types", "./src/core/typings", "./src/components/typings"]
},
"include": ["src"],
"exclude": ["node_modules", "dist"]
}