summaryrefslogtreecommitdiff
path: root/master/tsconfig.json
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-05-17 16:05:53 +0200
committerHampusM <hampus@hampusmat.com>2022-05-17 16:05:53 +0200
commit775222b6518324a8cb44a800c256ca98f2a1449b (patch)
tree1cbf28cfacd03c04e0d1ddce225893da054559f2 /master/tsconfig.json
parent4c40c538af66570cc4a5a0f0b956afa98f9876db (diff)
add master website
Diffstat (limited to 'master/tsconfig.json')
-rw-r--r--master/tsconfig.json41
1 files changed, 41 insertions, 0 deletions
diff --git a/master/tsconfig.json b/master/tsconfig.json
new file mode 100644
index 0000000..6497d64
--- /dev/null
+++ b/master/tsconfig.json
@@ -0,0 +1,41 @@
+{
+ "compilerOptions": {
+ "target": "esnext",
+ "module": "esnext",
+ "strict": true,
+ "jsx": "preserve",
+ "moduleResolution": "node",
+ "experimentalDecorators": true,
+ "skipLibCheck": true,
+ "esModuleInterop": true,
+ "allowSyntheticDefaultImports": true,
+ "forceConsistentCasingInFileNames": true,
+ "useDefineForClassFields": 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"
+ ]
+}