2021-03-24 13:04:30 +00:00
{
"$schema" : "https://json.schemastore.org/tsconfig" ,
"compilerOptions" : {
2021-08-06 22:14:30 +00:00
"target" : "ES2020" , / * S p e c i f y E C M A S c r i p t t a r g e t v e r s i o n : ' E S 3 ' ( d e f a u l t ) , ' E S 5 ' , ' E S 2015 ' , ' E S 2016 ' , ' E S 2017 ' , ' E S 2018 ' , ' E S 2019 ' , ' E S 2020 ' , o r ' E S N E X T ' . * /
2022-10-03 15:35:35 +00:00
"module" : "ESNext" ,
2021-08-06 22:14:30 +00:00
// "lib": [ "es2020" ], /* Specify library files to be included in the compilation. */
"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 . * /
"outDir" : ".dst" , / * I f n o t s e t w e c a n n o t i m p o r t . j s f i l e s w i t h o u t a w a r n i n g t h a t i s g o i n g t o b e o v e r w r i t t e n . o u t D i r i s n o t g o i n g t o b e u s e d i n a n y c a s e * /
"checkJs" : true , / * R e p o r t e r r o r s i n . j s f i l e s . * /
2021-03-24 13:04:30 +00:00
// "jsx": "preserve", /* Specify JSX code generation: 'react', 'react-jsx', 'react-jsxdev', 'preserve' or 'react-native'. */
"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 . * /
/ * 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. */
// "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */
/ * M o d u l e R e s o l u t i o n O p t i o n s * /
"moduleResolution" : "node" , / * 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 ) . * /
// "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. */
2022-01-17 10:04:55 +00:00
"typeRoots" : [ "node_modules/@types" , "build/typings" ] , / * L i s t o f f o l d e r s t o i n c l u d e t y p e d e f i n i t i o n s f r o m . * /
2021-03-24 13:04:30 +00:00
// "types": [], /* Type declaration files to be included in compilation. */
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
"esModuleInterop" : true , / * E n a b l e s e m i t i n t e r o p e r a b i l i t y b e t w e e n C o m m o n J S a n d E S M o d u l e s v i a c r e a t i o n o f n a m e s p a c e o b j e c t s f o r a l l i m p o r t s . I m p l i e s ' a l l o w S y n t h e t i c D e f a u l t I m p o r t s ' . * /
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
2022-01-17 10:04:55 +00:00
"allowUmdGlobalAccess" : true , / * A l l o w a c c e s s i n g U M D g l o b a l s f r o m m o d u l e s . * /
2021-03-24 13:04:30 +00:00
/ * 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 . * /
2022-01-17 10:04:55 +00:00
"forceConsistentCasingInFileNames" : true , / * D i s a l l o w i n c o n s i s t e n t l y - c a s e d r e f e r e n c e s t o t h e s a m e f i l e . * /
2022-10-03 15:35:35 +00:00
"resolveJsonModule" : true ,
"paths" : {
"#pkg" : [ "." ]
}
2021-03-24 13:04:30 +00:00
} ,
2022-10-03 15:35:35 +00:00
"include" : [ "src/ts/**/*" , "build/typings/**/*.d.ts" , "test/**/*" , "test-vectors/**/*.ts" , "benchmark/**/*.ts" ]
2021-03-24 13:04:30 +00:00
}