40 lines
3.1 KiB
JSON
40 lines
3.1 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ES2020", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */
|
|
"lib": [ "es2020" ], /* Specify library files to be included in the compilation. */
|
|
"allowJs": true, /* Allow javascript files to be compiled. */
|
|
"checkJs": true, /* Report errors in .js files. */
|
|
// "jsx": "preserve", /* Specify JSX code generation: 'react', 'react-jsx', 'react-jsxdev', 'preserve' or 'react-native'. */
|
|
"strict": true, /* Enable all strict type-checking options. */
|
|
|
|
/* Additional Checks */
|
|
// "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 */
|
|
|
|
/* Module Resolution Options */
|
|
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-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. */
|
|
"typeRoots": [ "./build/typings", "./node_modules/@types" ], /* List of folders to include type definitions from. */
|
|
// "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, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
|
|
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
|
|
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
|
|
|
|
/* Experimental Options */
|
|
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
|
|
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
|
|
|
|
/* Advanced Options */
|
|
"skipLibCheck": true, /* Skip type checking of declaration files. */
|
|
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
|
|
},
|
|
"include": ["src/**/*", "build/typings/**/*", "test/**/*"]
|
|
}
|