-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (23 loc) · 863 Bytes
/
tsconfig.json
File metadata and controls
26 lines (23 loc) · 863 Bytes
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": {
/* Basic Options */
"module": "esnext" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"noEmit": true,
/* Strict Type-Checking Options */
"strict": true /* Enable all strict type-checking options. */,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
/* Module Resolution Options */
"moduleResolution": "node",
"baseUrl": "resources/js" /* Base directory to resolve non-absolute module names. */
},
"include": ["resources/js/**/*.ts"],
"exclude": []
}