forked from aicioara/ink-quicksearch
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtsconfig.json
31 lines (30 loc) · 1.01 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
{
"include": [
"src/**/*"
],
"exclude": ["node_modules", "build"],
"compileOnSave": true,
"compilerOptions": {
"target": "es5", // Compatible with older browsers
"module": "commonjs", // Compatible with both Node.js and browser
"moduleResolution": "node", // Tell tsc to look in node_modules for modules
"sourceMap": false, // Creates *.js.map files
"inlineSourceMap": true,
"strict": true, // Strict types, eg. prohibits `var x=0; x=null`
"alwaysStrict": true, // Enable JavaScript's "use strict" mode
"outDir": "build",
"sourceRoot": "./src",
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"typeRoots": ["node_modules/@types"],
"jsx": "react"
},
"typedocOptions": {
"mode" : "modules",
"out" : "docs/build",
"categorizeByGroup" : true,
"theme" : "docs/themeoverride",
"excludeNotExported" : false
}
}