From b614604effda51ca7c76c8901be78ced62b642b2 Mon Sep 17 00:00:00 2001 From: Marcin Aman Date: Thu, 28 May 2020 16:17:13 +0200 Subject: Update TS migration to current dev, move to a common package, rename to frontend --- plugins/base/frontend/tsconfig.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 plugins/base/frontend/tsconfig.json (limited to 'plugins/base/frontend/tsconfig.json') diff --git a/plugins/base/frontend/tsconfig.json b/plugins/base/frontend/tsconfig.json new file mode 100644 index 00000000..4cc8fd37 --- /dev/null +++ b/plugins/base/frontend/tsconfig.json @@ -0,0 +1,30 @@ +{ + "compilerOptions": { + "sourceMap": true, + "target": "es5", + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], + "noImplicitAny": true, + "allowJs": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react", + "typeRoots": [ + "src/main/types" + ] + }, + "include": [ + "./node_modules/@types/node/globals.d.ts" + ] +} -- cgit