-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
38 lines (35 loc) · 898 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
36
37
38
{
"basePath": "./src/",
"strict": true,
"typeRoots": ["node_modules/@types"],
"types": ["react-notifications"],
"compilerOptions": {
"declaration": true,
"noImplicitReturns": false,
"allowJs": false,
"alwaysStrict": true,
"esModuleInterop": true,
"noImplicitThis": false,
"noImplicitAny": false,
"strictNullChecks": false,
"sourceMap": true,
"maxNodeModuleJsDepth": 0,
"jsx": "react",
"module": "es6",
"moduleResolution": "node",
"removeComments": true,
"preserveConstEnums": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"target": "es5",
"outDir": "dist"
},
"include": ["./src/**/*.ts", "./src/**/*.tsx", "global.d.ts"],
"exclude": [
"./src/**/*.js",
"./node_modules",
"./build", // build directory
"./dist", // package dist directory
"*.js"
]
}