-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 835 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 835 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
{
"compilerOptions": {
"allowJs": true,
"checkJs": false,
"skipLibCheck": true,
"sourceMap": true,
"noEmit": false,
"target": "ES5",
"outDir": "./dist",
"moduleResolution": "Node",
"module": "CommonJS",
"resolveJsonModule": true,
"isolatedModules": false,
"esModuleInterop": true,
"typeRoots": ["./scripts/node_modules/@smartface/native/device/system"],
"baseUrl": "scripts",
"rootDir": "scripts",
"lib": ["ES2015", "ES2017"]
},
"files": [
"./typings.d.ts",
"./scripts/node_modules/@smartface/native/.types/typings.d.ts",
"./scripts/node_modules/@smartface/contx/index.d.ts",
"./scripts/node_modules/@smartface/styler/index.d.ts"
],
"exclude": ["node_modules", "./dist", "**/node_modules/*"],
"include": ["./scripts", "./scripts/**/*.json"]
}