From 6b7744a16c7bf321fb2874b54d49e3b954f618fa Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Tue, 21 Apr 2020 21:04:33 -0400 Subject: init --- iridescence/tsconfig.json | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 iridescence/tsconfig.json (limited to 'iridescence/tsconfig.json') diff --git a/iridescence/tsconfig.json b/iridescence/tsconfig.json new file mode 100644 index 0000000..b57578e --- /dev/null +++ b/iridescence/tsconfig.json @@ -0,0 +1,39 @@ +{ + "compilerOptions": { + "target": "esnext", + "module": "esnext", + "strict": true, + "jsx": "preserve", + "importHelpers": true, + "moduleResolution": "node", + "experimentalDecorators": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "sourceMap": true, + "baseUrl": ".", + "types": [ + "webpack-env" + ], + "paths": { + "@/*": [ + "src/*" + ] + }, + "lib": [ + "esnext", + "dom", + "dom.iterable", + "scripthost" + ] + }, + "include": [ + "src/**/*.ts", + "src/**/*.tsx", + "src/**/*.vue", + "tests/**/*.ts", + "tests/**/*.tsx" + ], + "exclude": [ + "node_modules" + ] +} -- cgit v1.2.3