forked from mbrevda/react-image
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
19 lines (19 loc) · 763 Bytes
/
tsconfig.json
File metadata and controls
19 lines (19 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"compilerOptions": {
"declaration": true, // emit declerations
"declarationDir": ".", // to this dir
"outDir": "./jsSrc", // but all other code to this dir
"sourceMap": true, // allow sourcemap support
"strictNullChecks": true, // enable strict null checks as a best practice
// "module": "es6", // specify module code generation
"jsx": "react", // use typescript to transpile jsx to js
"allowJs": true, // allow a partial TypeScript and JavaScript codebase
"allowSyntheticDefaultImports": true,
// Include typings from built-in lib declarations
"lib": ["es6", "es2019", "dom"],
"target": "esnext",
"skipLibCheck": true
},
"include": ["*/**/*.ts", "*/**/*.tsx"],
"exclude": ["node_modules", "dist"]
}