X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tsconfig.json;h=b8078fc366a8571cd54c3f9adaaf135dc1a3d922;hb=2beeb6d98a5749ce94666482783a6034b7b5430d;hp=82b4e8ef180d3af091e22545622b3e113146adfb;hpb=c8aafe0d6d0ccc1c9bbce5db003e3bb27be9044f;p=e-mobility-charging-stations-simulator.git diff --git a/tsconfig.json b/tsconfig.json index 82b4e8ef..b8078fc3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,7 @@ /* Basic Options */ // "incremental": true, /* Enable incremental compilation */ "target": "es2022", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */ - "module": "es2022", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */ + "module": "esnext", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */ "lib": ["es2022"], /* Specify library files to be included in the compilation. */ // "allowJs": true, /* Allow javascript files to be compiled. */ // "checkJs": true, /* Report errors in .js files. */ @@ -43,7 +43,7 @@ /* Module Resolution Options */ "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ - "resolveJsonModule": true, + "resolveJsonModule": true, /* Resolve modules imported with '.json' extension. */ // "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. */ @@ -65,13 +65,8 @@ "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ /* Advanced Options */ - "skipLibCheck": true, /* Skip type checking of declaration files. */ + // "skipLibCheck": true, /* Skip type checking of declaration files. */ "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ }, - "exclude": ["ui/web/**/*.ts"], - "ts-node": { - "compilerOptions": { - "module": "commonjs" - } - } + "exclude": ["ui/web/**/*.ts"] }