-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
26 lines (26 loc) · 1.21 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
{
"compilerOptions": {
"target": "es2016",
"module": "CommonJS", /* Specify what module code is generated. */
"moduleResolution": "node",
"baseUrl": "./",
// "paths": {
// "@styles*": ["src/styles/*"],
// "@components*": ["src/components/*"],
// },
"resolveJsonModule": true, /* Enable importing .json files. */
"sourceMap": true, /* Create source map files for emitted JavaScript files. */
"outDir": "./dist", /* Specify an output folder for all emitted files. */
"noEmit": false, /* Disable emitting files from a compilation. */
"isolatedModules": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
/* Type Checking */
"strict": true, /* Enable all strict type-checking options. */
"noImplicitAny": false,
"noImplicitReturns": true,
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"include": ["**/*.ts", "app/**/*", "types/*types.d.ts"],
"exclude": ["node_modules", "app/**/*.spec.ts"]
}