-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
16 lines (16 loc) · 885 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig to read more about this file */
"rootDir": "./src",
"outDir": "./dist",
"target": "ESNext", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
"lib": ["ESNext", "DOM"],
"moduleResolution": "Node16",
"module": "Node16",
"declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
"declarationMap": true, /* Create sourcemaps for d.ts files. */
"sourceMap": true,
"strict": true, /* Enable all strict type-checking options. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
}
}