-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (21 loc) · 916 Bytes
/
tsconfig.json
File metadata and controls
22 lines (21 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"extends": "@tsconfig/node18/tsconfig.json",
"compilerOptions": {
"rootDir": "." /* Specify the root folder within your source files. */,
"resolveJsonModule": true /* Enable importing .json files. */,
"allowJs": true /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */,
"declaration": true /* Generate .d.ts files from TypeScript and JavaScript files in your project. */,
"outDir": "dist" /* Specify an output folder for all emitted files. */,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"noImplicitAny": true /* Enable error reporting for expressions and declarations with an implied 'any' type. */,
"isolatedModules": true
},
"exclude": [
"node_modules",
"dist",
"templates/**/*",
"jest.config.js",
"coverage/**/*",
"project/**/*"
]
}