-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
33 lines (33 loc) · 1.41 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
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": ["esnext"],
"outDir": "./dist",
"jsx": "react",
"declaration": false,
"sourceMap": false,
"downlevelIteration": true,
"skipLibCheck": true,
"strict": true,
"esModuleInterop": true,
"allowJs": true,
"baseUrl": ".",
"paths": {
"core/*": ["core/*"],
"scaffolds/*": ["scaffolds/*"],
"compiled/*": ["compiled/*", "node_modules/@types/*", "node_modules/*"],
"chalk": ["compiled/chalk", "node_modules/@types/chalk", "node_modules/chalk"],
"decamelize": ["compiled/decamelize", "node_modules/@types/decamelize", "node_modules/decamelize"],
"execa": ["compiled/execa", "node_modules/@types/execa", "node_modules/execa"],
"got": ["compiled/got", "node_modules/@types/got", "node_modules/got"],
"react": ["compiled/react", "node_modules/@types/react", "node_modules/react"],
"react-is": ["compiled/react-is", "node_modules/@types/react-is", "node_modules/react-is"],
"tar": ["compiled/tar", "node_modules/@types/tar", "node_modules/tar"],
"wrap-ansi": ["compiled/wrap-ansi", "node_modules/@types/wrap-ansi", "node_modules/wrap-ansi"],
"yargs-parser": ["compiled/yargs-parser", "node_modules/@types/yargs-parser", "node_modules/yargs-parser"]
}
},
"include": ["core", "scaffolds", "scripts", "compiled"],
"exclude": ["scaffolds/*/template"]
}