From 097e23dde42613a0430f85c087dee9377f2e91af Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Sat, 12 Mar 2022 14:02:05 +1100 Subject: Make basic conversion to typescript --- tsconfig.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..bdb5432 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,15 @@ +{ + "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.vue"], + "compilerOptions": { + "strict": true, + "moduleResolution": "node", + "target": "esnext", + "module": "esnext", + "sourceMap": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "isolatedModules": true, + "lib": ["esnext", "dom"], + "skipLibCheck": true + } +} -- cgit v1.2.3