From 5aa7c4f9499135dd12162045e441f5215ee050aa Mon Sep 17 00:00:00 2001 From: Maksymilian Jopek Date: Sun, 26 Mar 2023 18:31:50 +0200 Subject: Full working app --- scripts/tsconfig.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 scripts/tsconfig.json (limited to 'scripts/tsconfig.json') diff --git a/scripts/tsconfig.json b/scripts/tsconfig.json new file mode 100644 index 0000000..bc6f4be --- /dev/null +++ b/scripts/tsconfig.json @@ -0,0 +1,28 @@ +{ + "compilerOptions": { + "esModuleInterop": true, + "target": "ESNext", + "module": "ESNext", + "moduleResolution": "node", + "strict": true, + "lib": [ + "ESNext", + "DOM" + ], + "noImplicitAny": true , + "strictNullChecks": true , + "strictFunctionTypes": true , + "strictBindCallApply": true , + "strictPropertyInitialization": true , + "noImplicitThis": true , + "alwaysStrict": true , + "downlevelIteration": true, + "outDir": ".", + }, + "include": [ + "./edit-data.ts" + ], + "exclude": [ + "./*.js", + ] +} -- cgit v1.3.1