-
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) · 1013 Bytes
/
tsconfig.json
File metadata and controls
19 lines (19 loc) · 1013 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"outDir": "./dist" /* Redirect output structure to the directory. */,
"rootDir": "./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */,
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */,
"removeComments": true /* Do not emit comments to output. */,
"alwaysStrict": true /* Parse in strict mode and emit "use strict" for each source file. */,
"baseUrl": "./src" /* Base directory to resolve non-absolute module names. */,
"skipLibCheck": true /* Skip type checking of declaration files. */,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
"noEmitOnError": true,
"strict": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}