diff options
Diffstat (limited to 'iridescence/tsconfig.json')
-rw-r--r-- | iridescence/tsconfig.json | 39 |
1 files changed, 39 insertions, 0 deletions
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" + ] +} |