-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtsconfig.json
37 lines (37 loc) · 1.03 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
{
"compilerOptions": {
"target": "ES2018",
"module": "commonjs",
"downlevelIteration": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"sourceMap": true,
"lib": ["es2020", "es5", "dom"],
"jsx": "react",
"declaration": true,
"reactNamespace": "JSX",
"experimentalDecorators": true,
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": true,
"removeComments": false,
"esModuleInterop": true,
"outDir": "out-tsc",
"baseUrl": "src",
"typeRoots": [
"node_modules/@types"
],
"paths": {
"@nyaf/lib": ["packages/@nyaf/lib"],
"@nyaf/forms": ["packages/@nyaf/forms"],
"@nyaf/store": ["packages/@nyaf/store"],
"@nyaf/*": ["packages/@nyaf/*"]
},
"skipLibCheck": true
},
"files": [
"./src/packages/@nyaf/lib/index.ts",
"./src/packages/@nyaf/forms/index.ts",
"./src/packages/@nyaf/store/index.ts"
],
"exclude": ["**/*.spec.ts", "./src/demos", "./src/packages/@nyaf/.backed/"]
}