From 38acabfa6089ab8ac469c12b5f55022fb96935e5 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 23 Aug 2021 16:46:06 -0300 Subject: added web vendors --- @linaria/tsconfig.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 @linaria/tsconfig.json (limited to '@linaria/tsconfig.json') diff --git a/@linaria/tsconfig.json b/@linaria/tsconfig.json new file mode 100644 index 0000000..7ae195b --- /dev/null +++ b/@linaria/tsconfig.json @@ -0,0 +1,28 @@ +{ + "exclude": [ + "node_modules", + "packages/*/__dtslint__/**", + "packages/*/__tests__/**", + "packages/*/__fixtures__/**", + "packages/*/__utils__/**", + "packages/*/types/**" + ], + "compilerOptions": { + "baseUrl": ".", + "composite": true, + "paths": { + "@linaria/*": ["./packages/*/src"] + }, + "jsx": "react", + "lib": ["es6", "dom"], + "module": "es6", + "moduleResolution": "node", + "strict": true, + "target": "esnext", + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "declaration": true, + "typeRoots": ["node_modules/@types", "typings"] + } +} -- cgit v1.2.3