2022-10-24 10:46:14 +02:00
{
"compilerOptions" : {
/ * B a s i c O p t i o n s * /
2023-09-06 13:24:34 +02:00
"target" : "ES2020" ,
"module" : "Node16" ,
"lib" : [ "DOM" , "ES2020" ] ,
2022-10-24 10:46:14 +02:00
"allowJs" : true / * A l l o w j a v a s c r i p t f i l e s t o b e c o m p i l e d . * / ,
// "checkJs": true, /* Report errors in .js files. */
2022-12-07 17:03:15 +01:00
"jsx" : "react" / * S p e c i f y J S X c o d e g e n e r a t i o n : ' p r e s e r v e ' , ' r e a c t - n a t i v e ' , o r ' r e a c t ' . * / ,
2022-12-07 13:29:36 +01:00
"jsxFactory" : "h" ,
"jsxFragmentFactory" : "Fragment" ,
2022-10-24 10:46:14 +02:00
"noEmit" : true / * D o n o t e m i t o u t p u t s . * / ,
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
// "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
/ * S t r i c t T y p e - C h e c k i n g O p t i o n s * /
"strict" : true / * E n a b l e a l l s t r i c t t y p e - c h e c k i n g o p t i o n s . * / ,
2022-10-25 01:13:25 +02:00
"noImplicitAny" : true / * R a i s e e r r o r o n e x p r e s s i o n s a n d d e c l a r a t i o n s w i t h a n i m p l i e d ' a n y ' t y p e . * / ,
2022-10-24 10:46:14 +02:00
/ * A d d i t i o n a l C h e c k s * /
// "noUnusedLocals": true, /* Report errors on unused locals. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
/ * M o d u l e R e s o l u t i o n O p t i o n s * /
2023-02-16 03:23:42 +01:00
"moduleResolution" : "Node16" / * S p e c i f y m o d u l e r e s o l u t i o n s t r a t e g y : ' n o d e ' ( N o d e . j s ) o r ' c l a s s i c ' ( T y p e S c r i p t p r e -1.6 ) . * / ,
2022-10-24 10:46:14 +02:00
"esModuleInterop" : true / * * / ,
// "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
// "typeRoots": [], /* List of folders to include type definitions from. */
// "types": [], /* Type declaration files to be included in compilation. */
2022-10-25 01:13:25 +02:00
"allowSyntheticDefaultImports" : true / * A l l o w d e f a u l t i m p o r t s f r o m m o d u l e s w i t h n o d e f a u l t e x p o r t . T h i s d o e s n o t a f f e c t c o d e e m i t , j u s t t y p e c h e c k i n g . * / ,
2022-10-24 10:46:14 +02:00
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
/ * S o u r c e M a p O p t i o n s * /
// "sourceRoot": "./", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
// "mapRoot": "./", /* Specify the location where debugger should locate map files instead of generated locations. */
// "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
// "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
/ * E x p e r i m e n t a l O p t i o n s * /
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
/ * A d v a n c e d O p t i o n s * /
"skipLibCheck" : true / * S k i p t y p e c h e c k i n g o f d e c l a r a t i o n f i l e s . * /
} ,
2023-09-06 13:24:34 +02:00
"include" : [ "src/**/*" ]
}