diff options
Diffstat (limited to 'dokka-subprojects/plugin-base-frontend/tsconfig.json')
-rw-r--r-- | dokka-subprojects/plugin-base-frontend/tsconfig.json | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dokka-subprojects/plugin-base-frontend/tsconfig.json b/dokka-subprojects/plugin-base-frontend/tsconfig.json new file mode 100644 index 00000000..0f0a4555 --- /dev/null +++ b/dokka-subprojects/plugin-base-frontend/tsconfig.json @@ -0,0 +1,31 @@ +{ + "compilerOptions": { + "sourceMap": true, + "target": "es5", + "lib": [ + "dom", + "dom.iterable", + "esnext", + "es2019" + ], + "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" + ] +} |