2020-07-28 15:57:48 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
/* Basic Options */
|
2021-07-12 17:47:56 +00:00
|
|
|
"module": "esnext" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */,
|
2021-07-29 10:46:51 +00:00
|
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
|
|
"noEmit": true,
|
2020-07-28 15:57:48 +00:00
|
|
|
|
|
|
|
/* Strict Type-Checking Options */
|
|
|
|
"strict": true /* Enable all strict type-checking options. */,
|
2021-07-12 17:47:56 +00:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2020-07-28 15:57:48 +00:00
|
|
|
|
2021-07-12 17:47:56 +00:00
|
|
|
"skipLibCheck": true,
|
2020-07-28 15:57:48 +00:00
|
|
|
|
2021-07-12 17:47:56 +00:00
|
|
|
/* Module Resolution Options */
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"baseUrl": "app/Resources/js" /* Base directory to resolve non-absolute module names. */
|
2020-10-22 17:41:59 +00:00
|
|
|
},
|
2021-07-12 17:47:56 +00:00
|
|
|
"include": ["app/Resources/js/**/*.ts"],
|
|
|
|
"exclude": []
|
2020-07-28 15:57:48 +00:00
|
|
|
}
|