summaryrefslogtreecommitdiff
path: root/@linaria/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to '@linaria/tsconfig.json')
-rw-r--r--@linaria/tsconfig.json28
1 files changed, 28 insertions, 0 deletions
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"]
+ }
+}