From d3bf2d09f740221771806789b00bf915c9f5f2e3 Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Fri, 26 Jan 2024 14:51:36 +0100 Subject: initial commit --- mobile-ns/tsconfig.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 mobile-ns/tsconfig.json (limited to 'mobile-ns/tsconfig.json') diff --git a/mobile-ns/tsconfig.json b/mobile-ns/tsconfig.json new file mode 100644 index 0000000..ac8f256 --- /dev/null +++ b/mobile-ns/tsconfig.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "module": "esnext", + "target": "ES2020", + "moduleResolution": "node", + "experimentalDecorators": true, + "emitDecoratorMetadata": true, + "noEmitHelpers": true, + "noEmitOnError": true, + "skipLibCheck": true, + "lib": ["ESNext", "dom"], + "baseUrl": ".", + "paths": { + "~/*": ["app/*"], + "@/*": ["app/*"] + } + }, + "include": ["app/**/*"], + "files": ["./references.d.ts"], + "exclude": ["node_modules", "platforms"] +} -- cgit v1.2.3