forked from AmityCo/Amity-Social-Cloud-UIKit-Web-OpenSource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
32 lines (32 loc) · 1004 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
{
"compilerOptions": {
"outDir": "./build", // path to output directory
"sourceMap": true, // allow sourcemap support
"strictNullChecks": true, // enable strict null checks as a best practice
"module": "esnext", // specify module code generation
"jsx": "react", // use typescript to transpile jsx to js
"target": "es6", // specify ECMAScript target version
"lib": ["ES2021", "DOM", "DOM.Iterable"],
"allowJs": true, // allow a partial TypeScript and JavaScript codebase
"experimentalDecorators": true,
"moduleResolution": "node",
"skipLibCheck": true,
"strict": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"typeRoots": ["./node_modules/@types"],
"baseUrl": "src",
"declaration": true,
"emitDeclarationOnly": false,
"resolveJsonModule": true,
"paths": {
"~/*": ["*"]
},
},
"include": ["src"],
"exclude": [
"node_modules",
"src/**/*.test.*",
"src/**/*.stories.*",
]
}